passenger-jmazzi 2.2.9
Sign up to get free protection for your applications and to get access to all the features.
- data/INSTALL +6 -0
- data/LICENSE +19 -0
- data/NEWS +270 -0
- data/README +45 -0
- data/Rakefile +918 -0
- data/benchmark/ApplicationPool.cpp +52 -0
- data/benchmark/accept_vs_socketpair_vs_named_pipes.rb +126 -0
- data/benchmark/dispatcher.rb +42 -0
- data/benchmark/overhead_of_password_checking.rb +81 -0
- data/benchmark/socket_connections_vs_persistent_pipe.rb +99 -0
- data/benchmark/unix_sockets_vs_pipes.rb +83 -0
- data/bin/passenger-config +46 -0
- data/bin/passenger-install-apache2-module +224 -0
- data/bin/passenger-install-nginx-module +474 -0
- data/bin/passenger-make-enterprisey +83 -0
- data/bin/passenger-memory-stats +301 -0
- data/bin/passenger-spawn-server +68 -0
- data/bin/passenger-status +125 -0
- data/bin/passenger-stress-test +344 -0
- data/debian/compat +1 -0
- data/debian/control +21 -0
- data/debian/postinst +24 -0
- data/debian/prerm +2 -0
- data/doc/ApplicationPool algorithm.txt +402 -0
- data/doc/Architectural overview.txt +334 -0
- data/doc/Doxyfile +241 -0
- data/doc/Security of user switching support.txt +197 -0
- data/doc/Users guide Apache.txt +1848 -0
- data/doc/Users guide Nginx.txt +769 -0
- data/doc/definitions.h +5 -0
- data/doc/images/by_sa.png +0 -0
- data/doc/images/conservative_spawning.png +0 -0
- data/doc/images/conservative_spawning.svg +248 -0
- data/doc/images/icons/README +5 -0
- data/doc/images/icons/callouts/1.png +0 -0
- data/doc/images/icons/callouts/10.png +0 -0
- data/doc/images/icons/callouts/11.png +0 -0
- data/doc/images/icons/callouts/12.png +0 -0
- data/doc/images/icons/callouts/13.png +0 -0
- data/doc/images/icons/callouts/14.png +0 -0
- data/doc/images/icons/callouts/15.png +0 -0
- data/doc/images/icons/callouts/2.png +0 -0
- data/doc/images/icons/callouts/3.png +0 -0
- data/doc/images/icons/callouts/4.png +0 -0
- data/doc/images/icons/callouts/5.png +0 -0
- data/doc/images/icons/callouts/6.png +0 -0
- data/doc/images/icons/callouts/7.png +0 -0
- data/doc/images/icons/callouts/8.png +0 -0
- data/doc/images/icons/callouts/9.png +0 -0
- data/doc/images/icons/caution.png +0 -0
- data/doc/images/icons/example.png +0 -0
- data/doc/images/icons/home.png +0 -0
- data/doc/images/icons/important.png +0 -0
- data/doc/images/icons/next.png +0 -0
- data/doc/images/icons/note.png +0 -0
- data/doc/images/icons/prev.png +0 -0
- data/doc/images/icons/tip.png +0 -0
- data/doc/images/icons/up.png +0 -0
- data/doc/images/icons/warning.png +0 -0
- data/doc/images/passenger_architecture.png +0 -0
- data/doc/images/passenger_architecture.svg +401 -0
- data/doc/images/phusion_banner.png +0 -0
- data/doc/images/smart-lv2.png +0 -0
- data/doc/images/smart-lv2.svg +320 -0
- data/doc/images/spawn_server_architecture.png +0 -0
- data/doc/images/spawn_server_architecture.svg +655 -0
- data/doc/images/typical_isolated_web_application.png +0 -0
- data/doc/images/typical_isolated_web_application.svg +213 -0
- data/doc/template/horo.rb +613 -0
- data/doc/users_guide_snippets/analysis_and_system_maintenance_tools.txt +144 -0
- data/doc/users_guide_snippets/appendix_a_about.txt +13 -0
- data/doc/users_guide_snippets/appendix_b_terminology.txt +63 -0
- data/doc/users_guide_snippets/appendix_c_spawning_methods.txt +304 -0
- data/doc/users_guide_snippets/global_queueing_explained.txt +78 -0
- data/doc/users_guide_snippets/rackup_specifications.txt +71 -0
- data/doc/users_guide_snippets/rails_spawn_method.txt +48 -0
- data/doc/users_guide_snippets/tips.txt +173 -0
- data/ext/apache2/Bucket.cpp +190 -0
- data/ext/apache2/Bucket.h +87 -0
- data/ext/apache2/Configuration.cpp +798 -0
- data/ext/apache2/Configuration.h +405 -0
- data/ext/apache2/DirectoryMapper.h +296 -0
- data/ext/apache2/Hooks.cpp +1617 -0
- data/ext/apache2/Hooks.h +45 -0
- data/ext/apache2/LICENSE-CNRI.TXT +79 -0
- data/ext/apache2/mod_passenger.c +38 -0
- data/ext/boost/LICENSE.TXT +23 -0
- data/ext/boost/VERSION.TXT +1 -0
- data/ext/boost/algorithm/string/case_conv.hpp +176 -0
- data/ext/boost/algorithm/string/compare.hpp +199 -0
- data/ext/boost/algorithm/string/concept.hpp +83 -0
- data/ext/boost/algorithm/string/config.hpp +28 -0
- data/ext/boost/algorithm/string/constants.hpp +36 -0
- data/ext/boost/algorithm/string/detail/case_conv.hpp +112 -0
- data/ext/boost/algorithm/string/detail/find_format.hpp +193 -0
- data/ext/boost/algorithm/string/detail/find_format_all.hpp +263 -0
- data/ext/boost/algorithm/string/detail/find_format_store.hpp +71 -0
- data/ext/boost/algorithm/string/detail/finder.hpp +646 -0
- data/ext/boost/algorithm/string/detail/formatter.hpp +94 -0
- data/ext/boost/algorithm/string/detail/replace_storage.hpp +159 -0
- data/ext/boost/algorithm/string/detail/sequence.hpp +200 -0
- data/ext/boost/algorithm/string/detail/util.hpp +106 -0
- data/ext/boost/algorithm/string/erase.hpp +844 -0
- data/ext/boost/algorithm/string/find_format.hpp +269 -0
- data/ext/boost/algorithm/string/finder.hpp +270 -0
- data/ext/boost/algorithm/string/formatter.hpp +103 -0
- data/ext/boost/algorithm/string/replace.hpp +928 -0
- data/ext/boost/algorithm/string/sequence_traits.hpp +193 -0
- data/ext/boost/algorithm/string/yes_no_type.hpp +33 -0
- data/ext/boost/assert.hpp +50 -0
- data/ext/boost/bind.hpp +1689 -0
- data/ext/boost/bind/arg.hpp +62 -0
- data/ext/boost/bind/bind_cc.hpp +117 -0
- data/ext/boost/bind/bind_mf_cc.hpp +227 -0
- data/ext/boost/bind/bind_template.hpp +345 -0
- data/ext/boost/bind/mem_fn_cc.hpp +103 -0
- data/ext/boost/bind/mem_fn_template.hpp +1020 -0
- data/ext/boost/bind/placeholders.hpp +68 -0
- data/ext/boost/bind/storage.hpp +475 -0
- data/ext/boost/call_traits.hpp +24 -0
- data/ext/boost/checked_delete.hpp +69 -0
- data/ext/boost/concept/assert.hpp +46 -0
- data/ext/boost/concept/detail/concept_def.hpp +51 -0
- data/ext/boost/concept/detail/concept_undef.hpp +5 -0
- data/ext/boost/concept/detail/general.hpp +66 -0
- data/ext/boost/concept/detail/has_constraints.hpp +48 -0
- data/ext/boost/concept/usage.hpp +43 -0
- data/ext/boost/concept_check.hpp +988 -0
- data/ext/boost/config.hpp +70 -0
- data/ext/boost/config/abi/borland_prefix.hpp +27 -0
- data/ext/boost/config/abi/borland_suffix.hpp +12 -0
- data/ext/boost/config/abi/msvc_prefix.hpp +8 -0
- data/ext/boost/config/abi/msvc_suffix.hpp +8 -0
- data/ext/boost/config/abi_prefix.hpp +25 -0
- data/ext/boost/config/abi_suffix.hpp +26 -0
- data/ext/boost/config/auto_link.hpp +368 -0
- data/ext/boost/config/compiler/borland.hpp +209 -0
- data/ext/boost/config/compiler/comeau.hpp +59 -0
- data/ext/boost/config/compiler/common_edg.hpp +62 -0
- data/ext/boost/config/compiler/compaq_cxx.hpp +19 -0
- data/ext/boost/config/compiler/digitalmars.hpp +67 -0
- data/ext/boost/config/compiler/gcc.hpp +149 -0
- data/ext/boost/config/compiler/gcc_xml.hpp +30 -0
- data/ext/boost/config/compiler/greenhills.hpp +28 -0
- data/ext/boost/config/compiler/hp_acc.hpp +95 -0
- data/ext/boost/config/compiler/intel.hpp +162 -0
- data/ext/boost/config/compiler/kai.hpp +35 -0
- data/ext/boost/config/compiler/metrowerks.hpp +111 -0
- data/ext/boost/config/compiler/mpw.hpp +51 -0
- data/ext/boost/config/compiler/pgi.hpp +25 -0
- data/ext/boost/config/compiler/sgi_mipspro.hpp +28 -0
- data/ext/boost/config/compiler/sunpro_cc.hpp +98 -0
- data/ext/boost/config/compiler/vacpp.hpp +60 -0
- data/ext/boost/config/compiler/visualc.hpp +191 -0
- data/ext/boost/config/no_tr1/complex.hpp +28 -0
- data/ext/boost/config/no_tr1/functional.hpp +28 -0
- data/ext/boost/config/no_tr1/memory.hpp +28 -0
- data/ext/boost/config/no_tr1/utility.hpp +28 -0
- data/ext/boost/config/platform/aix.hpp +33 -0
- data/ext/boost/config/platform/amigaos.hpp +15 -0
- data/ext/boost/config/platform/beos.hpp +26 -0
- data/ext/boost/config/platform/bsd.hpp +73 -0
- data/ext/boost/config/platform/cygwin.hpp +51 -0
- data/ext/boost/config/platform/hpux.hpp +84 -0
- data/ext/boost/config/platform/irix.hpp +31 -0
- data/ext/boost/config/platform/linux.hpp +98 -0
- data/ext/boost/config/platform/macos.hpp +78 -0
- data/ext/boost/config/platform/qnxnto.hpp +31 -0
- data/ext/boost/config/platform/solaris.hpp +21 -0
- data/ext/boost/config/platform/win32.hpp +58 -0
- data/ext/boost/config/posix_features.hpp +95 -0
- data/ext/boost/config/requires_threads.hpp +92 -0
- data/ext/boost/config/select_compiler_config.hpp +115 -0
- data/ext/boost/config/select_platform_config.hpp +90 -0
- data/ext/boost/config/select_stdlib_config.hpp +68 -0
- data/ext/boost/config/stdlib/dinkumware.hpp +106 -0
- data/ext/boost/config/stdlib/libcomo.hpp +46 -0
- data/ext/boost/config/stdlib/libstdcpp3.hpp +73 -0
- data/ext/boost/config/stdlib/modena.hpp +30 -0
- data/ext/boost/config/stdlib/msl.hpp +59 -0
- data/ext/boost/config/stdlib/roguewave.hpp +153 -0
- data/ext/boost/config/stdlib/sgi.hpp +111 -0
- data/ext/boost/config/stdlib/stlport.hpp +201 -0
- data/ext/boost/config/stdlib/vacpp.hpp +18 -0
- data/ext/boost/config/suffix.hpp +566 -0
- data/ext/boost/config/user.hpp +124 -0
- data/ext/boost/cstdint.hpp +449 -0
- data/ext/boost/current_function.hpp +67 -0
- data/ext/boost/date_time/adjust_functors.hpp +178 -0
- data/ext/boost/date_time/c_time.hpp +91 -0
- data/ext/boost/date_time/compiler_config.hpp +149 -0
- data/ext/boost/date_time/constrained_value.hpp +98 -0
- data/ext/boost/date_time/date.hpp +197 -0
- data/ext/boost/date_time/date_clock_device.hpp +77 -0
- data/ext/boost/date_time/date_defs.hpp +26 -0
- data/ext/boost/date_time/date_duration.hpp +147 -0
- data/ext/boost/date_time/date_duration_types.hpp +269 -0
- data/ext/boost/date_time/date_facet.hpp +775 -0
- data/ext/boost/date_time/date_format_simple.hpp +159 -0
- data/ext/boost/date_time/date_formatting.hpp +127 -0
- data/ext/boost/date_time/date_formatting_limited.hpp +121 -0
- data/ext/boost/date_time/date_formatting_locales.hpp +233 -0
- data/ext/boost/date_time/date_generator_formatter.hpp +263 -0
- data/ext/boost/date_time/date_generator_parser.hpp +329 -0
- data/ext/boost/date_time/date_generators.hpp +509 -0
- data/ext/boost/date_time/date_iterator.hpp +101 -0
- data/ext/boost/date_time/date_names_put.hpp +320 -0
- data/ext/boost/date_time/date_parsing.hpp +299 -0
- data/ext/boost/date_time/dst_rules.hpp +391 -0
- data/ext/boost/date_time/filetime_functions.hpp +78 -0
- data/ext/boost/date_time/format_date_parser.hpp +731 -0
- data/ext/boost/date_time/gregorian/conversion.hpp +73 -0
- data/ext/boost/date_time/gregorian/formatters.hpp +162 -0
- data/ext/boost/date_time/gregorian/formatters_limited.hpp +81 -0
- data/ext/boost/date_time/gregorian/greg_calendar.hpp +47 -0
- data/ext/boost/date_time/gregorian/greg_date.hpp +135 -0
- data/ext/boost/date_time/gregorian/greg_day.hpp +57 -0
- data/ext/boost/date_time/gregorian/greg_day_of_year.hpp +38 -0
- data/ext/boost/date_time/gregorian/greg_duration.hpp +38 -0
- data/ext/boost/date_time/gregorian/greg_duration_types.hpp +34 -0
- data/ext/boost/date_time/gregorian/greg_month.hpp +105 -0
- data/ext/boost/date_time/gregorian/greg_weekday.hpp +66 -0
- data/ext/boost/date_time/gregorian/greg_year.hpp +53 -0
- data/ext/boost/date_time/gregorian/greg_ymd.hpp +33 -0
- data/ext/boost/date_time/gregorian/gregorian.hpp +38 -0
- data/ext/boost/date_time/gregorian/gregorian_io.hpp +777 -0
- data/ext/boost/date_time/gregorian/gregorian_types.hpp +109 -0
- data/ext/boost/date_time/gregorian/parsers.hpp +91 -0
- data/ext/boost/date_time/gregorian_calendar.hpp +70 -0
- data/ext/boost/date_time/gregorian_calendar.ipp +219 -0
- data/ext/boost/date_time/int_adapter.hpp +507 -0
- data/ext/boost/date_time/iso_format.hpp +303 -0
- data/ext/boost/date_time/locale_config.hpp +31 -0
- data/ext/boost/date_time/microsec_time_clock.hpp +205 -0
- data/ext/boost/date_time/parse_format_base.hpp +29 -0
- data/ext/boost/date_time/period.hpp +377 -0
- data/ext/boost/date_time/period_formatter.hpp +196 -0
- data/ext/boost/date_time/period_parser.hpp +196 -0
- data/ext/boost/date_time/posix_time/conversion.hpp +93 -0
- data/ext/boost/date_time/posix_time/date_duration_operators.hpp +114 -0
- data/ext/boost/date_time/posix_time/posix_time.hpp +39 -0
- data/ext/boost/date_time/posix_time/posix_time_config.hpp +178 -0
- data/ext/boost/date_time/posix_time/posix_time_duration.hpp +82 -0
- data/ext/boost/date_time/posix_time/posix_time_io.hpp +246 -0
- data/ext/boost/date_time/posix_time/posix_time_system.hpp +68 -0
- data/ext/boost/date_time/posix_time/posix_time_types.hpp +55 -0
- data/ext/boost/date_time/posix_time/ptime.hpp +65 -0
- data/ext/boost/date_time/posix_time/time_formatters.hpp +289 -0
- data/ext/boost/date_time/posix_time/time_parsers.hpp +44 -0
- data/ext/boost/date_time/posix_time/time_period.hpp +29 -0
- data/ext/boost/date_time/special_defs.hpp +25 -0
- data/ext/boost/date_time/special_values_formatter.hpp +96 -0
- data/ext/boost/date_time/special_values_parser.hpp +159 -0
- data/ext/boost/date_time/string_convert.hpp +33 -0
- data/ext/boost/date_time/string_parse_tree.hpp +278 -0
- data/ext/boost/date_time/strings_from_facet.hpp +123 -0
- data/ext/boost/date_time/time.hpp +190 -0
- data/ext/boost/date_time/time_clock.hpp +83 -0
- data/ext/boost/date_time/time_defs.hpp +33 -0
- data/ext/boost/date_time/time_duration.hpp +281 -0
- data/ext/boost/date_time/time_facet.hpp +1263 -0
- data/ext/boost/date_time/time_formatting_streams.hpp +119 -0
- data/ext/boost/date_time/time_iterator.hpp +52 -0
- data/ext/boost/date_time/time_parsing.hpp +321 -0
- data/ext/boost/date_time/time_resolution_traits.hpp +140 -0
- data/ext/boost/date_time/time_system_counted.hpp +254 -0
- data/ext/boost/date_time/time_system_split.hpp +213 -0
- data/ext/boost/date_time/wrapping_int.hpp +163 -0
- data/ext/boost/date_time/year_month_day.hpp +45 -0
- data/ext/boost/detail/atomic_count.hpp +124 -0
- data/ext/boost/detail/atomic_count_gcc.hpp +68 -0
- data/ext/boost/detail/atomic_count_gcc_x86.hpp +84 -0
- data/ext/boost/detail/atomic_count_pthreads.hpp +96 -0
- data/ext/boost/detail/atomic_count_solaris.hpp +59 -0
- data/ext/boost/detail/atomic_count_sync.hpp +57 -0
- data/ext/boost/detail/atomic_count_win32.hpp +63 -0
- data/ext/boost/detail/bad_weak_ptr.hpp +59 -0
- data/ext/boost/detail/call_traits.hpp +164 -0
- data/ext/boost/detail/endian.hpp +73 -0
- data/ext/boost/detail/indirect_traits.hpp +487 -0
- data/ext/boost/detail/iterator.hpp +494 -0
- data/ext/boost/detail/lcast_precision.hpp +184 -0
- data/ext/boost/detail/limits.hpp +449 -0
- data/ext/boost/detail/reference_content.hpp +141 -0
- data/ext/boost/detail/shared_count.hpp +375 -0
- data/ext/boost/detail/sp_counted_base.hpp +81 -0
- data/ext/boost/detail/sp_counted_base_acc_ia64.hpp +150 -0
- data/ext/boost/detail/sp_counted_base_cw_ppc.hpp +170 -0
- data/ext/boost/detail/sp_counted_base_cw_x86.hpp +158 -0
- data/ext/boost/detail/sp_counted_base_gcc_ia64.hpp +157 -0
- data/ext/boost/detail/sp_counted_base_gcc_ppc.hpp +181 -0
- data/ext/boost/detail/sp_counted_base_gcc_sparc.hpp +166 -0
- data/ext/boost/detail/sp_counted_base_gcc_x86.hpp +173 -0
- data/ext/boost/detail/sp_counted_base_nt.hpp +107 -0
- data/ext/boost/detail/sp_counted_base_pt.hpp +135 -0
- data/ext/boost/detail/sp_counted_base_solaris.hpp +113 -0
- data/ext/boost/detail/sp_counted_base_sync.hpp +151 -0
- data/ext/boost/detail/sp_counted_base_w32.hpp +130 -0
- data/ext/boost/detail/sp_counted_impl.hpp +231 -0
- data/ext/boost/detail/sp_typeinfo.hpp +83 -0
- data/ext/boost/detail/workaround.hpp +202 -0
- data/ext/boost/enable_shared_from_this.hpp +73 -0
- data/ext/boost/function.hpp +66 -0
- data/ext/boost/function/detail/function_iterate.hpp +16 -0
- data/ext/boost/function/detail/maybe_include.hpp +267 -0
- data/ext/boost/function/detail/prologue.hpp +25 -0
- data/ext/boost/function/function_base.hpp +762 -0
- data/ext/boost/function/function_template.hpp +969 -0
- data/ext/boost/function_equal.hpp +28 -0
- data/ext/boost/get_pointer.hpp +29 -0
- data/ext/boost/implicit_cast.hpp +29 -0
- data/ext/boost/integer_traits.hpp +236 -0
- data/ext/boost/io/ios_state.hpp +431 -0
- data/ext/boost/io_fwd.hpp +67 -0
- data/ext/boost/is_placeholder.hpp +31 -0
- data/ext/boost/iterator.hpp +59 -0
- data/ext/boost/iterator/detail/config_def.hpp +135 -0
- data/ext/boost/iterator/detail/config_undef.hpp +25 -0
- data/ext/boost/iterator/detail/enable_if.hpp +86 -0
- data/ext/boost/iterator/detail/facade_iterator_category.hpp +200 -0
- data/ext/boost/iterator/detail/minimum_category.hpp +116 -0
- data/ext/boost/iterator/interoperable.hpp +50 -0
- data/ext/boost/iterator/iterator_adaptor.hpp +366 -0
- data/ext/boost/iterator/iterator_categories.hpp +188 -0
- data/ext/boost/iterator/iterator_facade.hpp +879 -0
- data/ext/boost/iterator/iterator_traits.hpp +92 -0
- data/ext/boost/iterator/reverse_iterator.hpp +69 -0
- data/ext/boost/iterator/transform_iterator.hpp +188 -0
- data/ext/boost/lexical_cast.hpp +1205 -0
- data/ext/boost/limits.hpp +146 -0
- data/ext/boost/mem_fn.hpp +389 -0
- data/ext/boost/mpl/always.hpp +39 -0
- data/ext/boost/mpl/and.hpp +60 -0
- data/ext/boost/mpl/apply.hpp +229 -0
- data/ext/boost/mpl/apply_fwd.hpp +107 -0
- data/ext/boost/mpl/apply_wrap.hpp +203 -0
- data/ext/boost/mpl/arg.hpp +131 -0
- data/ext/boost/mpl/arg_fwd.hpp +28 -0
- data/ext/boost/mpl/assert.hpp +370 -0
- data/ext/boost/mpl/aux_/adl_barrier.hpp +48 -0
- data/ext/boost/mpl/aux_/arg_typedef.hpp +31 -0
- data/ext/boost/mpl/aux_/arity.hpp +39 -0
- data/ext/boost/mpl/aux_/arity_spec.hpp +67 -0
- data/ext/boost/mpl/aux_/common_name_wknd.hpp +34 -0
- data/ext/boost/mpl/aux_/config/adl.hpp +40 -0
- data/ext/boost/mpl/aux_/config/arrays.hpp +30 -0
- data/ext/boost/mpl/aux_/config/bind.hpp +33 -0
- data/ext/boost/mpl/aux_/config/compiler.hpp +64 -0
- data/ext/boost/mpl/aux_/config/ctps.hpp +30 -0
- data/ext/boost/mpl/aux_/config/dtp.hpp +46 -0
- data/ext/boost/mpl/aux_/config/eti.hpp +47 -0
- data/ext/boost/mpl/aux_/config/gcc.hpp +23 -0
- data/ext/boost/mpl/aux_/config/has_apply.hpp +32 -0
- data/ext/boost/mpl/aux_/config/has_xxx.hpp +33 -0
- data/ext/boost/mpl/aux_/config/integral.hpp +38 -0
- data/ext/boost/mpl/aux_/config/intel.hpp +21 -0
- data/ext/boost/mpl/aux_/config/lambda.hpp +32 -0
- data/ext/boost/mpl/aux_/config/msvc.hpp +21 -0
- data/ext/boost/mpl/aux_/config/msvc_typename.hpp +26 -0
- data/ext/boost/mpl/aux_/config/nttp.hpp +41 -0
- data/ext/boost/mpl/aux_/config/overload_resolution.hpp +29 -0
- data/ext/boost/mpl/aux_/config/pp_counter.hpp +26 -0
- data/ext/boost/mpl/aux_/config/preprocessor.hpp +39 -0
- data/ext/boost/mpl/aux_/config/static_constant.hpp +25 -0
- data/ext/boost/mpl/aux_/config/ttp.hpp +41 -0
- data/ext/boost/mpl/aux_/config/use_preprocessed.hpp +19 -0
- data/ext/boost/mpl/aux_/config/workaround.hpp +19 -0
- data/ext/boost/mpl/aux_/full_lambda.hpp +354 -0
- data/ext/boost/mpl/aux_/has_apply.hpp +32 -0
- data/ext/boost/mpl/aux_/has_type.hpp +23 -0
- data/ext/boost/mpl/aux_/include_preprocessed.hpp +42 -0
- data/ext/boost/mpl/aux_/integral_wrapper.hpp +93 -0
- data/ext/boost/mpl/aux_/lambda_arity_param.hpp +25 -0
- data/ext/boost/mpl/aux_/lambda_support.hpp +169 -0
- data/ext/boost/mpl/aux_/msvc_never_true.hpp +34 -0
- data/ext/boost/mpl/aux_/na.hpp +95 -0
- data/ext/boost/mpl/aux_/na_assert.hpp +34 -0
- data/ext/boost/mpl/aux_/na_fwd.hpp +31 -0
- data/ext/boost/mpl/aux_/na_spec.hpp +175 -0
- data/ext/boost/mpl/aux_/nested_type_wknd.hpp +48 -0
- data/ext/boost/mpl/aux_/nttp_decl.hpp +35 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp +84 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bind.hpp +561 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp +558 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/quote.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessor/def_params_tail.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessor/enum.hpp +62 -0
- data/ext/boost/mpl/aux_/preprocessor/filter_params.hpp +28 -0
- data/ext/boost/mpl/aux_/preprocessor/params.hpp +65 -0
- data/ext/boost/mpl/aux_/preprocessor/sub.hpp +65 -0
- data/ext/boost/mpl/aux_/static_cast.hpp +27 -0
- data/ext/boost/mpl/aux_/template_arity.hpp +189 -0
- data/ext/boost/mpl/aux_/template_arity_fwd.hpp +23 -0
- data/ext/boost/mpl/aux_/type_wrapper.hpp +47 -0
- data/ext/boost/mpl/aux_/value_wknd.hpp +89 -0
- data/ext/boost/mpl/aux_/yes_no.hpp +58 -0
- data/ext/boost/mpl/bind.hpp +551 -0
- data/ext/boost/mpl/bind_fwd.hpp +99 -0
- data/ext/boost/mpl/bool.hpp +39 -0
- data/ext/boost/mpl/bool_fwd.hpp +33 -0
- data/ext/boost/mpl/eval_if.hpp +71 -0
- data/ext/boost/mpl/has_xxx.hpp +272 -0
- data/ext/boost/mpl/identity.hpp +45 -0
- data/ext/boost/mpl/if.hpp +135 -0
- data/ext/boost/mpl/int.hpp +22 -0
- data/ext/boost/mpl/int_fwd.hpp +27 -0
- data/ext/boost/mpl/integral_c.hpp +51 -0
- data/ext/boost/mpl/integral_c_fwd.hpp +32 -0
- data/ext/boost/mpl/integral_c_tag.hpp +26 -0
- data/ext/boost/mpl/lambda.hpp +29 -0
- data/ext/boost/mpl/lambda_fwd.hpp +57 -0
- data/ext/boost/mpl/limits/arity.hpp +21 -0
- data/ext/boost/mpl/logical.hpp +21 -0
- data/ext/boost/mpl/next.hpp +19 -0
- data/ext/boost/mpl/next_prior.hpp +49 -0
- data/ext/boost/mpl/not.hpp +51 -0
- data/ext/boost/mpl/or.hpp +61 -0
- data/ext/boost/mpl/placeholders.hpp +100 -0
- data/ext/boost/mpl/protect.hpp +55 -0
- data/ext/boost/mpl/quote.hpp +140 -0
- data/ext/boost/mpl/size_t.hpp +25 -0
- data/ext/boost/mpl/size_t_fwd.hpp +28 -0
- data/ext/boost/mpl/void.hpp +76 -0
- data/ext/boost/mpl/void_fwd.hpp +26 -0
- data/ext/boost/next_prior.hpp +51 -0
- data/ext/boost/non_type.hpp +27 -0
- data/ext/boost/noncopyable.hpp +36 -0
- data/ext/boost/none.hpp +28 -0
- data/ext/boost/none_t.hpp +24 -0
- data/ext/boost/operators.hpp +943 -0
- data/ext/boost/optional.hpp +18 -0
- data/ext/boost/optional/optional.hpp +922 -0
- data/ext/boost/optional/optional_fwd.hpp +22 -0
- data/ext/boost/preprocessor/arithmetic/add.hpp +51 -0
- data/ext/boost/preprocessor/arithmetic/dec.hpp +288 -0
- data/ext/boost/preprocessor/arithmetic/inc.hpp +288 -0
- data/ext/boost/preprocessor/arithmetic/sub.hpp +50 -0
- data/ext/boost/preprocessor/array/data.hpp +28 -0
- data/ext/boost/preprocessor/array/elem.hpp +29 -0
- data/ext/boost/preprocessor/array/size.hpp +28 -0
- data/ext/boost/preprocessor/cat.hpp +35 -0
- data/ext/boost/preprocessor/comma_if.hpp +17 -0
- data/ext/boost/preprocessor/config/config.hpp +70 -0
- data/ext/boost/preprocessor/control/detail/while.hpp +536 -0
- data/ext/boost/preprocessor/control/expr_iif.hpp +31 -0
- data/ext/boost/preprocessor/control/if.hpp +30 -0
- data/ext/boost/preprocessor/control/iif.hpp +34 -0
- data/ext/boost/preprocessor/control/while.hpp +312 -0
- data/ext/boost/preprocessor/debug/error.hpp +33 -0
- data/ext/boost/preprocessor/detail/auto_rec.hpp +293 -0
- data/ext/boost/preprocessor/detail/check.hpp +48 -0
- data/ext/boost/preprocessor/detail/is_binary.hpp +30 -0
- data/ext/boost/preprocessor/empty.hpp +17 -0
- data/ext/boost/preprocessor/enum.hpp +17 -0
- data/ext/boost/preprocessor/enum_params.hpp +17 -0
- data/ext/boost/preprocessor/facilities/empty.hpp +21 -0
- data/ext/boost/preprocessor/facilities/identity.hpp +23 -0
- data/ext/boost/preprocessor/identity.hpp +17 -0
- data/ext/boost/preprocessor/inc.hpp +17 -0
- data/ext/boost/preprocessor/iterate.hpp +17 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
- data/ext/boost/preprocessor/iteration/iterate.hpp +82 -0
- data/ext/boost/preprocessor/list/adt.hpp +73 -0
- data/ext/boost/preprocessor/list/append.hpp +40 -0
- data/ext/boost/preprocessor/list/detail/fold_left.hpp +279 -0
- data/ext/boost/preprocessor/list/detail/fold_right.hpp +277 -0
- data/ext/boost/preprocessor/list/fold_left.hpp +303 -0
- data/ext/boost/preprocessor/list/fold_right.hpp +40 -0
- data/ext/boost/preprocessor/list/for_each_i.hpp +65 -0
- data/ext/boost/preprocessor/list/reverse.hpp +40 -0
- data/ext/boost/preprocessor/list/transform.hpp +49 -0
- data/ext/boost/preprocessor/logical/and.hpp +30 -0
- data/ext/boost/preprocessor/logical/bitand.hpp +38 -0
- data/ext/boost/preprocessor/logical/bool.hpp +288 -0
- data/ext/boost/preprocessor/logical/compl.hpp +36 -0
- data/ext/boost/preprocessor/punctuation/comma.hpp +21 -0
- data/ext/boost/preprocessor/punctuation/comma_if.hpp +31 -0
- data/ext/boost/preprocessor/repeat.hpp +17 -0
- data/ext/boost/preprocessor/repetition/detail/for.hpp +536 -0
- data/ext/boost/preprocessor/repetition/enum.hpp +66 -0
- data/ext/boost/preprocessor/repetition/enum_binary_params.hpp +54 -0
- data/ext/boost/preprocessor/repetition/enum_params.hpp +41 -0
- data/ext/boost/preprocessor/repetition/for.hpp +306 -0
- data/ext/boost/preprocessor/repetition/repeat.hpp +825 -0
- data/ext/boost/preprocessor/repetition/repeat_from_to.hpp +87 -0
- data/ext/boost/preprocessor/seq/elem.hpp +304 -0
- data/ext/boost/preprocessor/seq/enum.hpp +288 -0
- data/ext/boost/preprocessor/seq/for_each_i.hpp +61 -0
- data/ext/boost/preprocessor/seq/seq.hpp +44 -0
- data/ext/boost/preprocessor/seq/size.hpp +548 -0
- data/ext/boost/preprocessor/slot/detail/def.hpp +49 -0
- data/ext/boost/preprocessor/slot/detail/shared.hpp +247 -0
- data/ext/boost/preprocessor/slot/slot.hpp +32 -0
- data/ext/boost/preprocessor/stringize.hpp +33 -0
- data/ext/boost/preprocessor/tuple/eat.hpp +57 -0
- data/ext/boost/preprocessor/tuple/elem.hpp +385 -0
- data/ext/boost/preprocessor/tuple/rem.hpp +72 -0
- data/ext/boost/preprocessor/tuple/to_list.hpp +62 -0
- data/ext/boost/range/as_literal.hpp +131 -0
- data/ext/boost/range/begin.hpp +132 -0
- data/ext/boost/range/config.hpp +54 -0
- data/ext/boost/range/const_iterator.hpp +64 -0
- data/ext/boost/range/detail/common.hpp +117 -0
- data/ext/boost/range/detail/implementation_help.hpp +99 -0
- data/ext/boost/range/detail/sfinae.hpp +77 -0
- data/ext/boost/range/detail/str_types.hpp +38 -0
- data/ext/boost/range/difference_type.hpp +29 -0
- data/ext/boost/range/distance.hpp +34 -0
- data/ext/boost/range/empty.hpp +34 -0
- data/ext/boost/range/end.hpp +131 -0
- data/ext/boost/range/functions.hpp +27 -0
- data/ext/boost/range/iterator.hpp +72 -0
- data/ext/boost/range/iterator_range.hpp +643 -0
- data/ext/boost/range/mutable_iterator.hpp +64 -0
- data/ext/boost/range/rbegin.hpp +65 -0
- data/ext/boost/range/rend.hpp +65 -0
- data/ext/boost/range/reverse_iterator.hpp +40 -0
- data/ext/boost/range/size.hpp +36 -0
- data/ext/boost/range/size_type.hpp +78 -0
- data/ext/boost/range/value_type.hpp +34 -0
- data/ext/boost/ref.hpp +178 -0
- data/ext/boost/shared_ptr.hpp +619 -0
- data/ext/boost/src/pthread/exceptions.cpp +146 -0
- data/ext/boost/src/pthread/once.cpp +51 -0
- data/ext/boost/src/pthread/thread.cpp +709 -0
- data/ext/boost/src/pthread/timeconv.inl +130 -0
- data/ext/boost/src/tss_null.cpp +34 -0
- data/ext/boost/src/win32/exceptions.cpp +124 -0
- data/ext/boost/src/win32/thread.cpp +629 -0
- data/ext/boost/src/win32/timeconv.inl +130 -0
- data/ext/boost/src/win32/tss_dll.cpp +72 -0
- data/ext/boost/src/win32/tss_pe.cpp +269 -0
- data/ext/boost/static_assert.hpp +122 -0
- data/ext/boost/thread.hpp +21 -0
- data/ext/boost/thread/condition.hpp +16 -0
- data/ext/boost/thread/condition_variable.hpp +21 -0
- data/ext/boost/thread/detail/config.hpp +94 -0
- data/ext/boost/thread/detail/move.hpp +33 -0
- data/ext/boost/thread/detail/platform.hpp +71 -0
- data/ext/boost/thread/exceptions.hpp +109 -0
- data/ext/boost/thread/locks.hpp +589 -0
- data/ext/boost/thread/mutex.hpp +21 -0
- data/ext/boost/thread/once.hpp +29 -0
- data/ext/boost/thread/pthread/condition_variable.hpp +184 -0
- data/ext/boost/thread/pthread/condition_variable_fwd.hpp +66 -0
- data/ext/boost/thread/pthread/mutex.hpp +211 -0
- data/ext/boost/thread/pthread/once.hpp +85 -0
- data/ext/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +50 -0
- data/ext/boost/thread/pthread/recursive_mutex.hpp +249 -0
- data/ext/boost/thread/pthread/thread.hpp +339 -0
- data/ext/boost/thread/pthread/thread_data.hpp +102 -0
- data/ext/boost/thread/pthread/timespec.hpp +28 -0
- data/ext/boost/thread/pthread/tss.hpp +103 -0
- data/ext/boost/thread/recursive_mutex.hpp +21 -0
- data/ext/boost/thread/thread.hpp +22 -0
- data/ext/boost/thread/thread_time.hpp +46 -0
- data/ext/boost/thread/tss.hpp +18 -0
- data/ext/boost/thread/xtime.hpp +88 -0
- data/ext/boost/throw_exception.hpp +46 -0
- data/ext/boost/token_functions.hpp +621 -0
- data/ext/boost/token_iterator.hpp +128 -0
- data/ext/boost/tokenizer.hpp +98 -0
- data/ext/boost/type.hpp +18 -0
- data/ext/boost/type_traits/add_const.hpp +47 -0
- data/ext/boost/type_traits/add_pointer.hpp +72 -0
- data/ext/boost/type_traits/add_reference.hpp +89 -0
- data/ext/boost/type_traits/alignment_of.hpp +100 -0
- data/ext/boost/type_traits/broken_compiler_spec.hpp +117 -0
- data/ext/boost/type_traits/composite_traits.hpp +29 -0
- data/ext/boost/type_traits/config.hpp +76 -0
- data/ext/boost/type_traits/conversion_traits.hpp +17 -0
- data/ext/boost/type_traits/detail/bool_trait_def.hpp +173 -0
- data/ext/boost/type_traits/detail/bool_trait_undef.hpp +27 -0
- data/ext/boost/type_traits/detail/cv_traits_impl.hpp +97 -0
- data/ext/boost/type_traits/detail/false_result.hpp +28 -0
- data/ext/boost/type_traits/detail/ice_and.hpp +35 -0
- data/ext/boost/type_traits/detail/ice_eq.hpp +36 -0
- data/ext/boost/type_traits/detail/ice_not.hpp +31 -0
- data/ext/boost/type_traits/detail/ice_or.hpp +34 -0
- data/ext/boost/type_traits/detail/is_function_ptr_helper.hpp +220 -0
- data/ext/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +817 -0
- data/ext/boost/type_traits/detail/size_t_trait_def.hpp +58 -0
- data/ext/boost/type_traits/detail/size_t_trait_undef.hpp +16 -0
- data/ext/boost/type_traits/detail/template_arity_spec.hpp +31 -0
- data/ext/boost/type_traits/detail/type_trait_def.hpp +61 -0
- data/ext/boost/type_traits/detail/type_trait_undef.hpp +19 -0
- data/ext/boost/type_traits/detail/yes_no_type.hpp +26 -0
- data/ext/boost/type_traits/function_traits.hpp +236 -0
- data/ext/boost/type_traits/has_nothrow_copy.hpp +39 -0
- data/ext/boost/type_traits/has_trivial_copy.hpp +49 -0
- data/ext/boost/type_traits/ice.hpp +20 -0
- data/ext/boost/type_traits/integral_constant.hpp +53 -0
- data/ext/boost/type_traits/intrinsics.hpp +153 -0
- data/ext/boost/type_traits/is_abstract.hpp +144 -0
- data/ext/boost/type_traits/is_arithmetic.hpp +43 -0
- data/ext/boost/type_traits/is_array.hpp +90 -0
- data/ext/boost/type_traits/is_class.hpp +128 -0
- data/ext/boost/type_traits/is_const.hpp +142 -0
- data/ext/boost/type_traits/is_convertible.hpp +418 -0
- data/ext/boost/type_traits/is_enum.hpp +180 -0
- data/ext/boost/type_traits/is_float.hpp +27 -0
- data/ext/boost/type_traits/is_function.hpp +95 -0
- data/ext/boost/type_traits/is_integral.hpp +73 -0
- data/ext/boost/type_traits/is_member_function_pointer.hpp +134 -0
- data/ext/boost/type_traits/is_member_pointer.hpp +114 -0
- data/ext/boost/type_traits/is_pod.hpp +135 -0
- data/ext/boost/type_traits/is_pointer.hpp +160 -0
- data/ext/boost/type_traits/is_reference.hpp +116 -0
- data/ext/boost/type_traits/is_same.hpp +103 -0
- data/ext/boost/type_traits/is_scalar.hpp +55 -0
- data/ext/boost/type_traits/is_union.hpp +49 -0
- data/ext/boost/type_traits/is_void.hpp +33 -0
- data/ext/boost/type_traits/is_volatile.hpp +131 -0
- data/ext/boost/type_traits/remove_const.hpp +78 -0
- data/ext/boost/type_traits/remove_cv.hpp +61 -0
- data/ext/boost/type_traits/remove_pointer.hpp +43 -0
- data/ext/boost/type_traits/remove_reference.hpp +50 -0
- data/ext/boost/type_traits/type_with_alignment.hpp +288 -0
- data/ext/boost/utility.hpp +19 -0
- data/ext/boost/utility/addressof.hpp +58 -0
- data/ext/boost/utility/base_from_member.hpp +87 -0
- data/ext/boost/utility/compare_pointees.hpp +68 -0
- data/ext/boost/utility/enable_if.hpp +119 -0
- data/ext/boost/visit_each.hpp +29 -0
- data/ext/boost/weak_ptr.hpp +188 -0
- data/ext/common/Application.h +511 -0
- data/ext/common/ApplicationPool.h +205 -0
- data/ext/common/ApplicationPoolServer.h +794 -0
- data/ext/common/ApplicationPoolServerExecutable.cpp +743 -0
- data/ext/common/ApplicationPoolStatusReporter.h +336 -0
- data/ext/common/Base64.cpp +143 -0
- data/ext/common/Base64.h +57 -0
- data/ext/common/CachedFileStat.cpp +62 -0
- data/ext/common/CachedFileStat.h +51 -0
- data/ext/common/CachedFileStat.hpp +243 -0
- data/ext/common/DummySpawnManager.h +108 -0
- data/ext/common/Exceptions.h +258 -0
- data/ext/common/FileChangeChecker.h +209 -0
- data/ext/common/Logging.cpp +65 -0
- data/ext/common/Logging.h +123 -0
- data/ext/common/MessageChannel.h +615 -0
- data/ext/common/PoolOptions.h +355 -0
- data/ext/common/SpawnManager.h +561 -0
- data/ext/common/StandardApplicationPool.h +821 -0
- data/ext/common/StaticString.h +148 -0
- data/ext/common/StringListCreator.h +83 -0
- data/ext/common/SystemTime.cpp +33 -0
- data/ext/common/SystemTime.h +88 -0
- data/ext/common/Timer.h +90 -0
- data/ext/common/Utils.cpp +681 -0
- data/ext/common/Utils.h +497 -0
- data/ext/common/Version.h +31 -0
- data/ext/nginx/Configuration.c +1098 -0
- data/ext/nginx/Configuration.h +71 -0
- data/ext/nginx/ContentHandler.c +1225 -0
- data/ext/nginx/ContentHandler.h +64 -0
- data/ext/nginx/HelperServer.cpp +850 -0
- data/ext/nginx/HttpStatusExtractor.h +350 -0
- data/ext/nginx/ScgiRequestParser.h +317 -0
- data/ext/nginx/StaticContentHandler.c +257 -0
- data/ext/nginx/StaticContentHandler.h +37 -0
- data/ext/nginx/config +45 -0
- data/ext/nginx/ngx_http_passenger_module.c +653 -0
- data/ext/nginx/ngx_http_passenger_module.h +72 -0
- data/ext/oxt/backtrace.cpp +177 -0
- data/ext/oxt/backtrace.hpp +135 -0
- data/ext/oxt/detail/backtrace_disabled.hpp +39 -0
- data/ext/oxt/detail/backtrace_enabled.hpp +155 -0
- data/ext/oxt/detail/spin_lock_gcc_x86.hpp +82 -0
- data/ext/oxt/detail/spin_lock_portable.hpp +38 -0
- data/ext/oxt/detail/spin_lock_pthreads.hpp +97 -0
- data/ext/oxt/detail/tracable_exception_disabled.hpp +46 -0
- data/ext/oxt/detail/tracable_exception_enabled.hpp +48 -0
- data/ext/oxt/macros.hpp +58 -0
- data/ext/oxt/spin_lock.hpp +55 -0
- data/ext/oxt/system_calls.cpp +351 -0
- data/ext/oxt/system_calls.hpp +244 -0
- data/ext/oxt/thread.cpp +32 -0
- data/ext/oxt/thread.hpp +335 -0
- data/ext/oxt/tracable_exception.cpp +87 -0
- data/ext/oxt/tracable_exception.hpp +35 -0
- data/ext/phusion_passenger/extconf.rb +36 -0
- data/ext/phusion_passenger/native_support.c +308 -0
- data/lib/jeweler_spec.rb +86 -0
- data/lib/phusion_passenger/abstract_installer.rb +196 -0
- data/lib/phusion_passenger/abstract_request_handler.rb +475 -0
- data/lib/phusion_passenger/abstract_server.rb +369 -0
- data/lib/phusion_passenger/abstract_server_collection.rb +306 -0
- data/lib/phusion_passenger/admin_tools.rb +48 -0
- data/lib/phusion_passenger/admin_tools/control_process.rb +150 -0
- data/lib/phusion_passenger/application.rb +113 -0
- data/lib/phusion_passenger/console_text_template.rb +66 -0
- data/lib/phusion_passenger/constants.rb +31 -0
- data/lib/phusion_passenger/dependencies.rb +425 -0
- data/lib/phusion_passenger/events.rb +50 -0
- data/lib/phusion_passenger/exceptions.rb +103 -0
- data/lib/phusion_passenger/html_template.rb +109 -0
- data/lib/phusion_passenger/message_channel.rb +229 -0
- data/lib/phusion_passenger/packaging.rb +39 -0
- data/lib/phusion_passenger/platform_info.rb +550 -0
- data/lib/phusion_passenger/rack/application_spawner.rb +146 -0
- data/lib/phusion_passenger/rack/request_handler.rb +122 -0
- data/lib/phusion_passenger/railz/application_spawner.rb +412 -0
- data/lib/phusion_passenger/railz/cgi_fixed.rb +68 -0
- data/lib/phusion_passenger/railz/framework_spawner.rb +334 -0
- data/lib/phusion_passenger/railz/request_handler.rb +73 -0
- data/lib/phusion_passenger/simple_benchmarking.rb +52 -0
- data/lib/phusion_passenger/spawn_manager.rb +372 -0
- data/lib/phusion_passenger/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb +9 -0
- data/lib/phusion_passenger/templates/apache2/config_snippets.txt.erb +13 -0
- data/lib/phusion_passenger/templates/apache2/deployment_example.txt.erb +23 -0
- data/lib/phusion_passenger/templates/apache2/no_write_permission_to_passenger_root.txt.erb +9 -0
- data/lib/phusion_passenger/templates/apache2/possible_solutions_for_compilation_and_installation_problems.txt.erb +11 -0
- data/lib/phusion_passenger/templates/apache2/run_installer_as_root.txt.erb +8 -0
- data/lib/phusion_passenger/templates/apache2/welcome.txt.erb +15 -0
- data/lib/phusion_passenger/templates/app_exited_during_initialization.html.erb +14 -0
- data/lib/phusion_passenger/templates/app_init_error.html.erb +46 -0
- data/lib/phusion_passenger/templates/database_error.html.erb +24 -0
- data/lib/phusion_passenger/templates/error_layout.css +97 -0
- data/lib/phusion_passenger/templates/error_layout.html.erb +39 -0
- data/lib/phusion_passenger/templates/framework_init_error.html.erb +10 -0
- data/lib/phusion_passenger/templates/general_error.html.erb +8 -0
- data/lib/phusion_passenger/templates/invalid_app_root.html.erb +9 -0
- data/lib/phusion_passenger/templates/load_error.html.erb +6 -0
- data/lib/phusion_passenger/templates/nginx/ask_for_extra_configure_flags.txt.erb +8 -0
- data/lib/phusion_passenger/templates/nginx/cannot_write_to_dir.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/config_snippets.txt.erb +17 -0
- data/lib/phusion_passenger/templates/nginx/config_snippets_inserted.txt.erb +20 -0
- data/lib/phusion_passenger/templates/nginx/confirm_extra_configure_flags.txt.erb +5 -0
- data/lib/phusion_passenger/templates/nginx/deployment_example.txt.erb +22 -0
- data/lib/phusion_passenger/templates/nginx/pcre_could_not_be_downloaded.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/pcre_could_not_be_extracted.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/possible_solutions_for_compilation_and_installation_problems.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/possible_solutions_for_download_and_extraction_problems.txt.erb +20 -0
- data/lib/phusion_passenger/templates/nginx/query_download_and_install.txt.erb +21 -0
- data/lib/phusion_passenger/templates/nginx/run_installer_as_root.txt.erb +8 -0
- data/lib/phusion_passenger/templates/nginx/welcome.txt.erb +15 -0
- data/lib/phusion_passenger/templates/version_not_found.html.erb +6 -0
- data/lib/phusion_passenger/utils.rb +611 -0
- data/lib/phusion_passenger/utils/rewindable_input.rb +116 -0
- data/lib/phusion_passenger/wsgi/application_spawner.rb +104 -0
- data/lib/phusion_passenger/wsgi/request_handler.py +199 -0
- data/man/passenger-config.1 +29 -0
- data/man/passenger-make-enterprisey.8 +23 -0
- data/man/passenger-memory-stats.8 +33 -0
- data/man/passenger-status.8 +43 -0
- data/man/passenger-stress-test.1 +43 -0
- data/misc/copy_boost_headers.rb +125 -0
- data/misc/find_owner_pipe_leaks.rb +128 -0
- data/misc/rake/cplusplus.rb +57 -0
- data/misc/rake/extensions.rb +182 -0
- data/misc/rake/gempackagetask.rb +99 -0
- data/misc/rake/packagetask.rb +186 -0
- data/misc/rake/rdoctask.rb +209 -0
- data/misc/render_error_pages.rb +116 -0
- data/test/ApplicationPoolServerTest.cpp +114 -0
- data/test/ApplicationPoolServer_ApplicationPoolTest.cpp +33 -0
- data/test/ApplicationPoolTest.cpp +599 -0
- data/test/Base64Test.cpp +48 -0
- data/test/CachedFileStatTest.cpp +402 -0
- data/test/CxxTestMain.cpp +143 -0
- data/test/FileChangeCheckerTest.cpp +331 -0
- data/test/HttpStatusExtractorTest.cpp +198 -0
- data/test/MessageChannelTest.cpp +312 -0
- data/test/PoolOptionsTest.cpp +117 -0
- data/test/ScgiRequestParserTest.cpp +337 -0
- data/test/SpawnManagerTest.cpp +64 -0
- data/test/StandardApplicationPoolTest.cpp +27 -0
- data/test/StaticStringTest.cpp +51 -0
- data/test/SystemTimeTest.cpp +37 -0
- data/test/UtilsTest.cpp +257 -0
- data/test/config.yml.example +30 -0
- data/test/integration_tests/apache2_tests.rb +595 -0
- data/test/integration_tests/hello_world_rack_spec.rb +36 -0
- data/test/integration_tests/hello_world_wsgi_spec.rb +41 -0
- data/test/integration_tests/mycook_spec.rb +192 -0
- data/test/integration_tests/nginx_tests.rb +151 -0
- data/test/oxt/backtrace_test.cpp +128 -0
- data/test/oxt/oxt_test_main.cpp +25 -0
- data/test/oxt/syscall_interruption_test.cpp +38 -0
- data/test/ruby/abstract_request_handler_spec.rb +85 -0
- data/test/ruby/abstract_server_collection_spec.rb +246 -0
- data/test/ruby/abstract_server_spec.rb +51 -0
- data/test/ruby/application_spec.rb +43 -0
- data/test/ruby/message_channel_spec.rb +170 -0
- data/test/ruby/rack/application_spawner_spec.rb +99 -0
- data/test/ruby/rails/application_spawner_spec.rb +159 -0
- data/test/ruby/rails/framework_spawner_spec.rb +133 -0
- data/test/ruby/rails/minimal_spawner_spec.rb +93 -0
- data/test/ruby/rails/spawner_error_handling_spec.rb +107 -0
- data/test/ruby/rails/spawner_privilege_lowering_spec.rb +97 -0
- data/test/ruby/spawn_manager_spec.rb +205 -0
- data/test/ruby/spawn_server_spec.rb +26 -0
- data/test/ruby/utils_spec.rb +335 -0
- data/test/ruby/wsgi/application_spawner_spec.rb +54 -0
- data/test/stub/apache2/httpd.conf.erb +81 -0
- data/test/stub/apache2/mime.types +748 -0
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +23 -0
- data/test/stub/message_channel.rb +9 -0
- data/test/stub/message_channel_2.rb +10 -0
- data/test/stub/message_channel_3.rb +17 -0
- data/test/stub/nginx/koi-utf +109 -0
- data/test/stub/nginx/koi-win +103 -0
- data/test/stub/nginx/mime.types +70 -0
- data/test/stub/nginx/nginx.conf.erb +57 -0
- data/test/stub/nginx/win-utf +126 -0
- data/test/stub/rack/config.ru +4 -0
- data/test/stub/rack/public/rack.jpg +0 -0
- data/test/stub/rails_apps/foobar/app/controllers/application.rb +12 -0
- data/test/stub/rails_apps/foobar/app/controllers/bar_controller_1.rb +5 -0
- data/test/stub/rails_apps/foobar/app/controllers/bar_controller_2.rb +5 -0
- data/test/stub/rails_apps/foobar/app/controllers/foo_controller.rb +21 -0
- data/test/stub/rails_apps/foobar/app/helpers/application_helper.rb +3 -0
- data/test/stub/rails_apps/foobar/config/boot.rb +108 -0
- data/test/stub/rails_apps/foobar/config/database.yml +19 -0
- data/test/stub/rails_apps/foobar/config/environment.rb +59 -0
- data/test/stub/rails_apps/foobar/config/environments/development.rb +17 -0
- data/test/stub/rails_apps/foobar/config/environments/production.rb +18 -0
- data/test/stub/rails_apps/foobar/config/initializers/inflections.rb +10 -0
- data/test/stub/rails_apps/foobar/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails_apps/foobar/config/routes.rb +35 -0
- data/test/stub/rails_apps/mycook/app/controllers/application.rb +12 -0
- data/test/stub/rails_apps/mycook/app/controllers/recipes_controller.rb +5 -0
- data/test/stub/rails_apps/mycook/app/controllers/uploads_controller.rb +15 -0
- data/test/stub/rails_apps/mycook/app/controllers/welcome_controller.rb +71 -0
- data/test/stub/rails_apps/mycook/app/helpers/application_helper.rb +3 -0
- data/test/stub/rails_apps/mycook/app/views/layouts/default.rhtml +26 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/create.rhtml +13 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/index.rhtml +3 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/new.rhtml +8 -0
- data/test/stub/rails_apps/mycook/app/views/uploads/index.rhtml +1 -0
- data/test/stub/rails_apps/mycook/app/views/uploads/new.html.erb +8 -0
- data/test/stub/rails_apps/mycook/app/views/welcome/cached.rhtml +1 -0
- data/test/stub/rails_apps/mycook/app/views/welcome/index.rhtml +20 -0
- data/test/stub/rails_apps/mycook/config/boot.rb +108 -0
- data/test/stub/rails_apps/mycook/config/database.yml +19 -0
- data/test/stub/rails_apps/mycook/config/environment.rb +61 -0
- data/test/stub/rails_apps/mycook/config/environments/development.rb +18 -0
- data/test/stub/rails_apps/mycook/config/environments/production.rb +19 -0
- data/test/stub/rails_apps/mycook/config/initializers/inflections.rb +10 -0
- data/test/stub/rails_apps/mycook/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails_apps/mycook/config/routes.rb +38 -0
- data/test/stub/rails_apps/mycook/log/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/public/404.html +30 -0
- data/test/stub/rails_apps/mycook/public/422.html +30 -0
- data/test/stub/rails_apps/mycook/public/500.html +30 -0
- data/test/stub/rails_apps/mycook/public/dispatch.cgi +10 -0
- data/test/stub/rails_apps/mycook/public/dispatch.fcgi +24 -0
- data/test/stub/rails_apps/mycook/public/dispatch.rb +10 -0
- data/test/stub/rails_apps/mycook/public/favicon.ico +0 -0
- data/test/stub/rails_apps/mycook/public/images/angrywizard.gif +0 -0
- data/test/stub/rails_apps/mycook/public/images/cookbook.gif +0 -0
- data/test/stub/rails_apps/mycook/public/images/header.png +0 -0
- data/test/stub/rails_apps/mycook/public/images/rails.png +0 -0
- data/test/stub/rails_apps/mycook/public/javascripts/application.js +2 -0
- data/test/stub/rails_apps/mycook/public/javascripts/controls.js +963 -0
- data/test/stub/rails_apps/mycook/public/javascripts/dragdrop.js +972 -0
- data/test/stub/rails_apps/mycook/public/javascripts/effects.js +1120 -0
- data/test/stub/rails_apps/mycook/public/javascripts/prototype.js +4225 -0
- data/test/stub/rails_apps/mycook/public/robots.txt +5 -0
- data/test/stub/rails_apps/mycook/public/uploads.html +26 -0
- data/test/stub/rails_apps/mycook/public/welcome/cached.html +26 -0
- data/test/stub/rails_apps/mycook/sites/some.site/public/uploads.html +26 -0
- data/test/stub/rails_apps/mycook/sites/some.site/public/welcome/cached.html +26 -0
- data/test/stub/rails_apps/mycook/tmp/cache/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/pids/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/sessions/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/sockets/useless.txt +1 -0
- data/test/stub/spawn_server.rb +20 -0
- data/test/stub/upload_data.txt +494 -0
- data/test/stub/vendor_rails/minimal/README +1 -0
- data/test/stub/vendor_rails/minimal/actionmailer/lib/action_mailer.rb +0 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_controller.rb +19 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_pack.rb +0 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_view.rb +0 -0
- data/test/stub/vendor_rails/minimal/activerecord/lib/active_record.rb +7 -0
- data/test/stub/vendor_rails/minimal/activeresource/lib/active_resource.rb +0 -0
- data/test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb +17 -0
- data/test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb +0 -0
- data/test/stub/vendor_rails/minimal/railties/lib/dispatcher.rb +0 -0
- data/test/stub/vendor_rails/minimal/railties/lib/initializer.rb +52 -0
- data/test/stub/vendor_rails/minimal/railties/lib/ruby_version_check.rb +1 -0
- data/test/stub/wsgi/passenger_wsgi.py +3 -0
- data/test/stub/wsgi/public/wsgi-snake.jpg +0 -0
- data/test/stub/zsfa/header.png +0 -0
- data/test/stub/zsfa/index.html +14 -0
- data/test/stub/zsfa/zsfa.png +0 -0
- data/test/support/Support.cpp +84 -0
- data/test/support/Support.h +118 -0
- data/test/support/apache2_controller.rb +250 -0
- data/test/support/config.rb +38 -0
- data/test/support/multipart.rb +62 -0
- data/test/support/nginx_controller.rb +98 -0
- data/test/support/run_rspec_tests.rb +10 -0
- data/test/support/test_helper.rb +207 -0
- data/test/support/tut.h +1234 -0
- data/test/support/tut_reporter.h +256 -0
- data/test/support/valgrind.h +2539 -0
- metadata +1078 -0
@@ -0,0 +1,256 @@
|
|
1
|
+
/**
|
2
|
+
* TUT unit testing framework.
|
3
|
+
* http://tut-framework.sourceforge.net/
|
4
|
+
*
|
5
|
+
* Copyright 2002-2006 Vladimir Dyuzhev.
|
6
|
+
*
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
9
|
+
*
|
10
|
+
* Redistributions of source code must retain the above copyright notice, this
|
11
|
+
* list of conditions and the following disclaimer.
|
12
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
* this list of conditions and the following disclaimer in the documentation
|
14
|
+
* and/or other materials provided with the distribution.
|
15
|
+
*
|
16
|
+
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
17
|
+
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
19
|
+
* AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
20
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
21
|
+
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
22
|
+
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
23
|
+
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
24
|
+
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
25
|
+
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
26
|
+
*/
|
27
|
+
|
28
|
+
// Slightly modified for use in this software package.
|
29
|
+
|
30
|
+
#ifndef TUT_REPORTER
|
31
|
+
#define TUT_REPORTER
|
32
|
+
|
33
|
+
#include "tut.h"
|
34
|
+
|
35
|
+
/**
|
36
|
+
* Template Unit Tests Framework for C++.
|
37
|
+
* http://tut.dozen.ru
|
38
|
+
*
|
39
|
+
* @author Vladimir Dyuzhev, Vladimir.Dyuzhev@gmail.com
|
40
|
+
*/
|
41
|
+
namespace
|
42
|
+
{
|
43
|
+
|
44
|
+
std::ostream& operator<<(std::ostream& os, const tut::test_result& tr)
|
45
|
+
{
|
46
|
+
switch(tr.result)
|
47
|
+
{
|
48
|
+
case tut::test_result::ok:
|
49
|
+
os << '.';
|
50
|
+
break;
|
51
|
+
case tut::test_result::fail:
|
52
|
+
os << '[' << tr.test << "=F]";
|
53
|
+
break;
|
54
|
+
case tut::test_result::ex_ctor:
|
55
|
+
os << '[' << tr.test << "=C]";
|
56
|
+
break;
|
57
|
+
case tut::test_result::ex:
|
58
|
+
os << '[' << tr.test << "=X]";
|
59
|
+
break;
|
60
|
+
case tut::test_result::warn:
|
61
|
+
os << '[' << tr.test << "=W]";
|
62
|
+
break;
|
63
|
+
case tut::test_result::term:
|
64
|
+
os << '[' << tr.test << "=T]";
|
65
|
+
break;
|
66
|
+
}
|
67
|
+
|
68
|
+
return os;
|
69
|
+
}
|
70
|
+
|
71
|
+
} // end of namespace
|
72
|
+
|
73
|
+
namespace tut
|
74
|
+
{
|
75
|
+
|
76
|
+
/**
|
77
|
+
* Default TUT callback handler.
|
78
|
+
*/
|
79
|
+
class reporter : public tut::callback
|
80
|
+
{
|
81
|
+
std::string current_group;
|
82
|
+
typedef std::vector<tut::test_result> not_passed_list;
|
83
|
+
not_passed_list not_passed;
|
84
|
+
std::ostream& os;
|
85
|
+
|
86
|
+
public:
|
87
|
+
|
88
|
+
int ok_count;
|
89
|
+
int exceptions_count;
|
90
|
+
int failures_count;
|
91
|
+
int terminations_count;
|
92
|
+
int warnings_count;
|
93
|
+
|
94
|
+
reporter()
|
95
|
+
: os(std::cout)
|
96
|
+
{
|
97
|
+
init();
|
98
|
+
}
|
99
|
+
|
100
|
+
reporter(std::ostream& out)
|
101
|
+
: os(out)
|
102
|
+
{
|
103
|
+
init();
|
104
|
+
}
|
105
|
+
|
106
|
+
void run_started()
|
107
|
+
{
|
108
|
+
init();
|
109
|
+
}
|
110
|
+
|
111
|
+
void test_completed(const tut::test_result& tr)
|
112
|
+
{
|
113
|
+
if (tr.group != current_group)
|
114
|
+
{
|
115
|
+
os << std::endl << tr.group << ": " << std::flush;
|
116
|
+
current_group = tr.group;
|
117
|
+
}
|
118
|
+
|
119
|
+
os << tr << std::flush;
|
120
|
+
if (tr.result == tut::test_result::ok)
|
121
|
+
{
|
122
|
+
ok_count++;
|
123
|
+
}
|
124
|
+
else if (tr.result == tut::test_result::ex)
|
125
|
+
{
|
126
|
+
exceptions_count++;
|
127
|
+
}
|
128
|
+
else if (tr.result == tut::test_result::ex_ctor)
|
129
|
+
{
|
130
|
+
exceptions_count++;
|
131
|
+
}
|
132
|
+
else if (tr.result == tut::test_result::fail)
|
133
|
+
{
|
134
|
+
failures_count++;
|
135
|
+
}
|
136
|
+
else if (tr.result == tut::test_result::warn)
|
137
|
+
{
|
138
|
+
warnings_count++;
|
139
|
+
}
|
140
|
+
else
|
141
|
+
{
|
142
|
+
terminations_count++;
|
143
|
+
}
|
144
|
+
|
145
|
+
if (tr.result != tut::test_result::ok)
|
146
|
+
{
|
147
|
+
not_passed.push_back(tr);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
void run_completed()
|
152
|
+
{
|
153
|
+
os << std::endl;
|
154
|
+
|
155
|
+
if (not_passed.size() > 0)
|
156
|
+
{
|
157
|
+
not_passed_list::const_iterator i = not_passed.begin();
|
158
|
+
while (i != not_passed.end())
|
159
|
+
{
|
160
|
+
tut::test_result tr = *i;
|
161
|
+
|
162
|
+
os << std::endl;
|
163
|
+
|
164
|
+
os << "---> " << "group: " << tr.group
|
165
|
+
<< ", test: test<" << tr.test << ">"
|
166
|
+
<< (!tr.name.empty() ? (std::string(" : ") + tr.name) : std::string())
|
167
|
+
<< std::endl;
|
168
|
+
|
169
|
+
os << " problem: ";
|
170
|
+
switch(tr.result)
|
171
|
+
{
|
172
|
+
case test_result::fail:
|
173
|
+
os << "assertion failed" << std::endl;
|
174
|
+
break;
|
175
|
+
case test_result::ex:
|
176
|
+
case test_result::ex_ctor:
|
177
|
+
os << "unexpected exception" << std::endl;
|
178
|
+
if( tr.exception_typeid != "" )
|
179
|
+
{
|
180
|
+
os << " exception typeid: "
|
181
|
+
<< tr.exception_typeid << std::endl;
|
182
|
+
}
|
183
|
+
break;
|
184
|
+
case test_result::term:
|
185
|
+
os << "would be terminated" << std::endl;
|
186
|
+
break;
|
187
|
+
case test_result::warn:
|
188
|
+
os << "test passed, but cleanup code (destructor) raised"
|
189
|
+
" an exception" << std::endl;
|
190
|
+
break;
|
191
|
+
default:
|
192
|
+
break;
|
193
|
+
}
|
194
|
+
|
195
|
+
if (!tr.message.empty())
|
196
|
+
{
|
197
|
+
if (tr.result == test_result::fail)
|
198
|
+
{
|
199
|
+
os << " failed assertion: \"" << tr.message << "\""
|
200
|
+
<< std::endl;
|
201
|
+
}
|
202
|
+
else
|
203
|
+
{
|
204
|
+
os << " message: \"" << tr.message << "\""
|
205
|
+
<< std::endl;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
++i;
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
os << std::endl;
|
214
|
+
|
215
|
+
os << "tests summary:";
|
216
|
+
if (terminations_count > 0)
|
217
|
+
{
|
218
|
+
os << " terminations:" << terminations_count;
|
219
|
+
}
|
220
|
+
if (exceptions_count > 0)
|
221
|
+
{
|
222
|
+
os << " exceptions:" << exceptions_count;
|
223
|
+
}
|
224
|
+
if (failures_count > 0)
|
225
|
+
{
|
226
|
+
os << " failures:" << failures_count;
|
227
|
+
}
|
228
|
+
if (warnings_count > 0)
|
229
|
+
{
|
230
|
+
os << " warnings:" << warnings_count;
|
231
|
+
}
|
232
|
+
os << " ok:" << ok_count;
|
233
|
+
os << std::endl;
|
234
|
+
}
|
235
|
+
|
236
|
+
bool all_ok() const
|
237
|
+
{
|
238
|
+
return not_passed.empty();
|
239
|
+
}
|
240
|
+
|
241
|
+
private:
|
242
|
+
|
243
|
+
void init()
|
244
|
+
{
|
245
|
+
ok_count = 0;
|
246
|
+
exceptions_count = 0;
|
247
|
+
failures_count = 0;
|
248
|
+
terminations_count = 0;
|
249
|
+
warnings_count = 0;
|
250
|
+
not_passed.clear();
|
251
|
+
}
|
252
|
+
};
|
253
|
+
|
254
|
+
}
|
255
|
+
|
256
|
+
#endif
|
@@ -0,0 +1,2539 @@
|
|
1
|
+
/* -*- c -*-
|
2
|
+
----------------------------------------------------------------
|
3
|
+
|
4
|
+
Notice that the following BSD-style license applies to this one
|
5
|
+
file (valgrind.h) only. The rest of Valgrind is licensed under the
|
6
|
+
terms of the GNU General Public License, version 2, unless
|
7
|
+
otherwise indicated. See the COPYING file in the source
|
8
|
+
distribution for details.
|
9
|
+
|
10
|
+
----------------------------------------------------------------
|
11
|
+
|
12
|
+
This file is part of Valgrind, a dynamic binary instrumentation
|
13
|
+
framework.
|
14
|
+
|
15
|
+
Copyright (C) 2000-2007 Julian Seward. All rights reserved.
|
16
|
+
|
17
|
+
Redistribution and use in source and binary forms, with or without
|
18
|
+
modification, are permitted provided that the following conditions
|
19
|
+
are met:
|
20
|
+
|
21
|
+
1. Redistributions of source code must retain the above copyright
|
22
|
+
notice, this list of conditions and the following disclaimer.
|
23
|
+
|
24
|
+
2. The origin of this software must not be misrepresented; you must
|
25
|
+
not claim that you wrote the original software. If you use this
|
26
|
+
software in a product, an acknowledgment in the product
|
27
|
+
documentation would be appreciated but is not required.
|
28
|
+
|
29
|
+
3. Altered source versions must be plainly marked as such, and must
|
30
|
+
not be misrepresented as being the original software.
|
31
|
+
|
32
|
+
4. The name of the author may not be used to endorse or promote
|
33
|
+
products derived from this software without specific prior written
|
34
|
+
permission.
|
35
|
+
|
36
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
37
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
38
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
39
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
40
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
41
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
42
|
+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
43
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
44
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
45
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
46
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
47
|
+
|
48
|
+
----------------------------------------------------------------
|
49
|
+
|
50
|
+
Notice that the above BSD-style license applies to this one file
|
51
|
+
(valgrind.h) only. The entire rest of Valgrind is licensed under
|
52
|
+
the terms of the GNU General Public License, version 2. See the
|
53
|
+
COPYING file in the source distribution for details.
|
54
|
+
|
55
|
+
----------------------------------------------------------------
|
56
|
+
*/
|
57
|
+
|
58
|
+
|
59
|
+
/* This file is for inclusion into client (your!) code.
|
60
|
+
|
61
|
+
You can use these macros to manipulate and query Valgrind's
|
62
|
+
execution inside your own programs.
|
63
|
+
|
64
|
+
The resulting executables will still run without Valgrind, just a
|
65
|
+
little bit more slowly than they otherwise would, but otherwise
|
66
|
+
unchanged. When not running on valgrind, each client request
|
67
|
+
consumes very few (eg. 7) instructions, so the resulting performance
|
68
|
+
loss is negligible unless you plan to execute client requests
|
69
|
+
millions of times per second. Nevertheless, if that is still a
|
70
|
+
problem, you can compile with the NVALGRIND symbol defined (gcc
|
71
|
+
-DNVALGRIND) so that client requests are not even compiled in. */
|
72
|
+
|
73
|
+
#ifndef __VALGRIND_H
|
74
|
+
#define __VALGRIND_H
|
75
|
+
|
76
|
+
#include <stdarg.h>
|
77
|
+
|
78
|
+
/* Nb: this file might be included in a file compiled with -ansi. So
|
79
|
+
we can't use C++ style "//" comments nor the "asm" keyword (instead
|
80
|
+
use "__asm__"). */
|
81
|
+
|
82
|
+
/* Derive some tags indicating what the target architecture is. Note
|
83
|
+
that in this file we're using the compiler's CPP symbols for
|
84
|
+
identifying architectures, which are different to the ones we use
|
85
|
+
within the rest of Valgrind. Note, __powerpc__ is active for both
|
86
|
+
32 and 64-bit PPC, whereas __powerpc64__ is only active for the
|
87
|
+
latter. */
|
88
|
+
#undef ARCH_x86
|
89
|
+
#undef ARCH_amd64
|
90
|
+
#undef ARCH_ppc32
|
91
|
+
#undef ARCH_ppc64
|
92
|
+
|
93
|
+
#if defined(__i386__)
|
94
|
+
# define ARCH_x86 1
|
95
|
+
#elif defined(__x86_64__)
|
96
|
+
# define ARCH_amd64 1
|
97
|
+
#elif defined(__powerpc__) && !defined(__powerpc64__)
|
98
|
+
# define ARCH_ppc32 1
|
99
|
+
#elif defined(__powerpc__) && defined(__powerpc64__)
|
100
|
+
# define ARCH_ppc64 1
|
101
|
+
#endif
|
102
|
+
|
103
|
+
/* If we're not compiling for our target architecture, don't generate
|
104
|
+
any inline asms. */
|
105
|
+
#if !defined(ARCH_x86) && !defined(ARCH_amd64) \
|
106
|
+
&& !defined(ARCH_ppc32) && !defined(ARCH_ppc64)
|
107
|
+
# if !defined(NVALGRIND)
|
108
|
+
# define NVALGRIND 1
|
109
|
+
# endif
|
110
|
+
#endif
|
111
|
+
|
112
|
+
|
113
|
+
/* ------------------------------------------------------------------ */
|
114
|
+
/* ARCHITECTURE SPECIFICS for SPECIAL INSTRUCTIONS. There is nothing */
|
115
|
+
/* in here of use to end-users -- skip to the next section. */
|
116
|
+
/* ------------------------------------------------------------------ */
|
117
|
+
|
118
|
+
#if defined(NVALGRIND)
|
119
|
+
|
120
|
+
/* Define NVALGRIND to completely remove the Valgrind magic sequence
|
121
|
+
from the compiled code (analogous to NDEBUG's effects on
|
122
|
+
assert()) */
|
123
|
+
#define VALGRIND_DO_CLIENT_REQUEST( \
|
124
|
+
_zzq_rlval, _zzq_default, _zzq_request, \
|
125
|
+
_zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \
|
126
|
+
{ \
|
127
|
+
(_zzq_rlval) = (_zzq_default); \
|
128
|
+
}
|
129
|
+
|
130
|
+
#else /* ! NVALGRIND */
|
131
|
+
|
132
|
+
/* The following defines the magic code sequences which the JITter
|
133
|
+
spots and handles magically. Don't look too closely at them as
|
134
|
+
they will rot your brain.
|
135
|
+
|
136
|
+
The assembly code sequences for all architectures is in this one
|
137
|
+
file. This is because this file must be stand-alone, and we don't
|
138
|
+
want to have multiple files.
|
139
|
+
|
140
|
+
For VALGRIND_DO_CLIENT_REQUEST, we must ensure that the default
|
141
|
+
value gets put in the return slot, so that everything works when
|
142
|
+
this is executed not under Valgrind. Args are passed in a memory
|
143
|
+
block, and so there's no intrinsic limit to the number that could
|
144
|
+
be passed, but it's currently five.
|
145
|
+
|
146
|
+
The macro args are:
|
147
|
+
_zzq_rlval result lvalue
|
148
|
+
_zzq_default default value (result returned when running on real CPU)
|
149
|
+
_zzq_request request code
|
150
|
+
_zzq_arg1..5 request params
|
151
|
+
|
152
|
+
The other two macros are used to support function wrapping, and are
|
153
|
+
a lot simpler. VALGRIND_GET_NR_CONTEXT returns the value of the
|
154
|
+
guest's NRADDR pseudo-register and whatever other information is
|
155
|
+
needed to safely run the call original from the wrapper: on
|
156
|
+
ppc64-linux, the R2 value at the divert point is also needed. This
|
157
|
+
information is abstracted into a user-visible type, OrigFn.
|
158
|
+
|
159
|
+
VALGRIND_CALL_NOREDIR_* behaves the same as the following on the
|
160
|
+
guest, but guarantees that the branch instruction will not be
|
161
|
+
redirected: x86: call *%eax, amd64: call *%rax, ppc32/ppc64:
|
162
|
+
branch-and-link-to-r11. VALGRIND_CALL_NOREDIR is just text, not a
|
163
|
+
complete inline asm, since it needs to be combined with more magic
|
164
|
+
inline asm stuff to be useful.
|
165
|
+
*/
|
166
|
+
|
167
|
+
/* ---------------------------- x86 ---------------------------- */
|
168
|
+
|
169
|
+
#if defined(ARCH_x86)
|
170
|
+
|
171
|
+
typedef
|
172
|
+
struct {
|
173
|
+
unsigned int nraddr; /* where's the code? */
|
174
|
+
}
|
175
|
+
OrigFn;
|
176
|
+
|
177
|
+
#define __SPECIAL_INSTRUCTION_PREAMBLE \
|
178
|
+
"roll $3, %%edi ; roll $13, %%edi\n\t" \
|
179
|
+
"roll $29, %%edi ; roll $19, %%edi\n\t"
|
180
|
+
|
181
|
+
#define VALGRIND_DO_CLIENT_REQUEST( \
|
182
|
+
_zzq_rlval, _zzq_default, _zzq_request, \
|
183
|
+
_zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \
|
184
|
+
{ volatile unsigned int _zzq_args[6]; \
|
185
|
+
volatile unsigned int _zzq_result; \
|
186
|
+
_zzq_args[0] = (unsigned int)(_zzq_request); \
|
187
|
+
_zzq_args[1] = (unsigned int)(_zzq_arg1); \
|
188
|
+
_zzq_args[2] = (unsigned int)(_zzq_arg2); \
|
189
|
+
_zzq_args[3] = (unsigned int)(_zzq_arg3); \
|
190
|
+
_zzq_args[4] = (unsigned int)(_zzq_arg4); \
|
191
|
+
_zzq_args[5] = (unsigned int)(_zzq_arg5); \
|
192
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
193
|
+
/* %EDX = client_request ( %EAX ) */ \
|
194
|
+
"xchgl %%ebx,%%ebx" \
|
195
|
+
: "=d" (_zzq_result) \
|
196
|
+
: "a" (&_zzq_args[0]), "0" (_zzq_default) \
|
197
|
+
: "cc", "memory" \
|
198
|
+
); \
|
199
|
+
_zzq_rlval = _zzq_result; \
|
200
|
+
}
|
201
|
+
|
202
|
+
#define VALGRIND_GET_NR_CONTEXT(_zzq_rlval) \
|
203
|
+
{ volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
|
204
|
+
volatile unsigned int __addr; \
|
205
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
206
|
+
/* %EAX = guest_NRADDR */ \
|
207
|
+
"xchgl %%ecx,%%ecx" \
|
208
|
+
: "=a" (__addr) \
|
209
|
+
: \
|
210
|
+
: "cc", "memory" \
|
211
|
+
); \
|
212
|
+
_zzq_orig->nraddr = __addr; \
|
213
|
+
}
|
214
|
+
|
215
|
+
#define VALGRIND_CALL_NOREDIR_EAX \
|
216
|
+
__SPECIAL_INSTRUCTION_PREAMBLE \
|
217
|
+
/* call-noredir *%EAX */ \
|
218
|
+
"xchgl %%edx,%%edx\n\t"
|
219
|
+
#endif /* ARCH_x86 */
|
220
|
+
|
221
|
+
/* --------------------------- amd64 --------------------------- */
|
222
|
+
|
223
|
+
#if defined(ARCH_amd64)
|
224
|
+
|
225
|
+
typedef
|
226
|
+
struct {
|
227
|
+
unsigned long long int nraddr; /* where's the code? */
|
228
|
+
}
|
229
|
+
OrigFn;
|
230
|
+
|
231
|
+
#define __SPECIAL_INSTRUCTION_PREAMBLE \
|
232
|
+
"rolq $3, %%rdi ; rolq $13, %%rdi\n\t" \
|
233
|
+
"rolq $61, %%rdi ; rolq $51, %%rdi\n\t"
|
234
|
+
|
235
|
+
#define VALGRIND_DO_CLIENT_REQUEST( \
|
236
|
+
_zzq_rlval, _zzq_default, _zzq_request, \
|
237
|
+
_zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \
|
238
|
+
{ volatile unsigned long long int _zzq_args[6]; \
|
239
|
+
volatile unsigned long long int _zzq_result; \
|
240
|
+
_zzq_args[0] = (unsigned long long int)(_zzq_request); \
|
241
|
+
_zzq_args[1] = (unsigned long long int)(_zzq_arg1); \
|
242
|
+
_zzq_args[2] = (unsigned long long int)(_zzq_arg2); \
|
243
|
+
_zzq_args[3] = (unsigned long long int)(_zzq_arg3); \
|
244
|
+
_zzq_args[4] = (unsigned long long int)(_zzq_arg4); \
|
245
|
+
_zzq_args[5] = (unsigned long long int)(_zzq_arg5); \
|
246
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
247
|
+
/* %RDX = client_request ( %RAX ) */ \
|
248
|
+
"xchgq %%rbx,%%rbx" \
|
249
|
+
: "=d" (_zzq_result) \
|
250
|
+
: "a" (&_zzq_args[0]), "0" (_zzq_default) \
|
251
|
+
: "cc", "memory" \
|
252
|
+
); \
|
253
|
+
_zzq_rlval = _zzq_result; \
|
254
|
+
}
|
255
|
+
|
256
|
+
#define VALGRIND_GET_NR_CONTEXT(_zzq_rlval) \
|
257
|
+
{ volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
|
258
|
+
volatile unsigned long long int __addr; \
|
259
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
260
|
+
/* %RAX = guest_NRADDR */ \
|
261
|
+
"xchgq %%rcx,%%rcx" \
|
262
|
+
: "=a" (__addr) \
|
263
|
+
: \
|
264
|
+
: "cc", "memory" \
|
265
|
+
); \
|
266
|
+
_zzq_orig->nraddr = __addr; \
|
267
|
+
}
|
268
|
+
|
269
|
+
#define VALGRIND_CALL_NOREDIR_RAX \
|
270
|
+
__SPECIAL_INSTRUCTION_PREAMBLE \
|
271
|
+
/* call-noredir *%RAX */ \
|
272
|
+
"xchgq %%rdx,%%rdx\n\t"
|
273
|
+
#endif /* ARCH_amd64 */
|
274
|
+
|
275
|
+
/* --------------------------- ppc32 --------------------------- */
|
276
|
+
|
277
|
+
#if defined(ARCH_ppc32)
|
278
|
+
|
279
|
+
typedef
|
280
|
+
struct {
|
281
|
+
unsigned int nraddr; /* where's the code? */
|
282
|
+
}
|
283
|
+
OrigFn;
|
284
|
+
|
285
|
+
#define __SPECIAL_INSTRUCTION_PREAMBLE \
|
286
|
+
"rlwinm 0,0,3,0,0 ; rlwinm 0,0,13,0,0\n\t" \
|
287
|
+
"rlwinm 0,0,29,0,0 ; rlwinm 0,0,19,0,0\n\t"
|
288
|
+
|
289
|
+
#define VALGRIND_DO_CLIENT_REQUEST( \
|
290
|
+
_zzq_rlval, _zzq_default, _zzq_request, \
|
291
|
+
_zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \
|
292
|
+
\
|
293
|
+
{ unsigned int _zzq_args[6]; \
|
294
|
+
register unsigned int _zzq_result __asm__("r3"); \
|
295
|
+
register unsigned int* _zzq_ptr __asm__("r4"); \
|
296
|
+
_zzq_args[0] = (unsigned int)(_zzq_request); \
|
297
|
+
_zzq_args[1] = (unsigned int)(_zzq_arg1); \
|
298
|
+
_zzq_args[2] = (unsigned int)(_zzq_arg2); \
|
299
|
+
_zzq_args[3] = (unsigned int)(_zzq_arg3); \
|
300
|
+
_zzq_args[4] = (unsigned int)(_zzq_arg4); \
|
301
|
+
_zzq_args[5] = (unsigned int)(_zzq_arg5); \
|
302
|
+
_zzq_ptr = _zzq_args; \
|
303
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
304
|
+
/* %R3 = client_request ( %R4 ) */ \
|
305
|
+
"or 1,1,1" \
|
306
|
+
: "=r" (_zzq_result) \
|
307
|
+
: "0" (_zzq_default), "r" (_zzq_ptr) \
|
308
|
+
: "cc", "memory"); \
|
309
|
+
_zzq_rlval = _zzq_result; \
|
310
|
+
}
|
311
|
+
|
312
|
+
#define VALGRIND_GET_NR_CONTEXT(_zzq_rlval) \
|
313
|
+
{ volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
|
314
|
+
register unsigned int __addr __asm__("r3"); \
|
315
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
316
|
+
/* %R3 = guest_NRADDR */ \
|
317
|
+
"or 2,2,2" \
|
318
|
+
: "=r" (__addr) \
|
319
|
+
: \
|
320
|
+
: "cc", "memory" \
|
321
|
+
); \
|
322
|
+
_zzq_orig->nraddr = __addr; \
|
323
|
+
}
|
324
|
+
|
325
|
+
#define VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
326
|
+
__SPECIAL_INSTRUCTION_PREAMBLE \
|
327
|
+
/* branch-and-link-to-noredir *%R11 */ \
|
328
|
+
"or 3,3,3\n\t"
|
329
|
+
#endif /* ARCH_ppc32 */
|
330
|
+
|
331
|
+
/* --------------------------- ppc64 --------------------------- */
|
332
|
+
|
333
|
+
#if defined(ARCH_ppc64)
|
334
|
+
|
335
|
+
typedef
|
336
|
+
struct {
|
337
|
+
unsigned long long int nraddr; /* where's the code? */
|
338
|
+
unsigned long long int r2; /* what tocptr do we need? */
|
339
|
+
}
|
340
|
+
OrigFn;
|
341
|
+
|
342
|
+
#define __SPECIAL_INSTRUCTION_PREAMBLE \
|
343
|
+
"rotldi 0,0,3 ; rotldi 0,0,13\n\t" \
|
344
|
+
"rotldi 0,0,61 ; rotldi 0,0,51\n\t"
|
345
|
+
|
346
|
+
#define VALGRIND_DO_CLIENT_REQUEST( \
|
347
|
+
_zzq_rlval, _zzq_default, _zzq_request, \
|
348
|
+
_zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4, _zzq_arg5) \
|
349
|
+
\
|
350
|
+
{ unsigned long long int _zzq_args[6]; \
|
351
|
+
register unsigned long long int _zzq_result __asm__("r3"); \
|
352
|
+
register unsigned long long int* _zzq_ptr __asm__("r4"); \
|
353
|
+
_zzq_args[0] = (unsigned long long int)(_zzq_request); \
|
354
|
+
_zzq_args[1] = (unsigned long long int)(_zzq_arg1); \
|
355
|
+
_zzq_args[2] = (unsigned long long int)(_zzq_arg2); \
|
356
|
+
_zzq_args[3] = (unsigned long long int)(_zzq_arg3); \
|
357
|
+
_zzq_args[4] = (unsigned long long int)(_zzq_arg4); \
|
358
|
+
_zzq_args[5] = (unsigned long long int)(_zzq_arg5); \
|
359
|
+
_zzq_ptr = _zzq_args; \
|
360
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
361
|
+
/* %R3 = client_request ( %R4 ) */ \
|
362
|
+
"or 1,1,1" \
|
363
|
+
: "=r" (_zzq_result) \
|
364
|
+
: "0" (_zzq_default), "r" (_zzq_ptr) \
|
365
|
+
: "cc", "memory"); \
|
366
|
+
_zzq_rlval = _zzq_result; \
|
367
|
+
}
|
368
|
+
|
369
|
+
#define VALGRIND_GET_NR_CONTEXT(_zzq_rlval) \
|
370
|
+
{ volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
|
371
|
+
register unsigned long long int __addr __asm__("r3"); \
|
372
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
373
|
+
/* %R3 = guest_NRADDR */ \
|
374
|
+
"or 2,2,2" \
|
375
|
+
: "=r" (__addr) \
|
376
|
+
: \
|
377
|
+
: "cc", "memory" \
|
378
|
+
); \
|
379
|
+
_zzq_orig->nraddr = __addr; \
|
380
|
+
__asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
|
381
|
+
/* %R3 = guest_NRADDR_GPR2 */ \
|
382
|
+
"or 4,4,4" \
|
383
|
+
: "=r" (__addr) \
|
384
|
+
: \
|
385
|
+
: "cc", "memory" \
|
386
|
+
); \
|
387
|
+
_zzq_orig->r2 = __addr; \
|
388
|
+
}
|
389
|
+
|
390
|
+
#define VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
391
|
+
__SPECIAL_INSTRUCTION_PREAMBLE \
|
392
|
+
/* branch-and-link-to-noredir *%R11 */ \
|
393
|
+
"or 3,3,3\n\t"
|
394
|
+
|
395
|
+
#endif /* ARCH_ppc64 */
|
396
|
+
|
397
|
+
/* Insert assembly code for other architectures here... */
|
398
|
+
|
399
|
+
#endif /* NVALGRIND */
|
400
|
+
|
401
|
+
|
402
|
+
/* ------------------------------------------------------------------ */
|
403
|
+
/* ARCHITECTURE SPECIFICS for FUNCTION WRAPPING. This is all very */
|
404
|
+
/* ugly. It's the least-worst tradeoff I can think of. */
|
405
|
+
/* ------------------------------------------------------------------ */
|
406
|
+
|
407
|
+
/* This section defines magic (a.k.a appalling-hack) macros for doing
|
408
|
+
guaranteed-no-redirection macros, so as to get from function
|
409
|
+
wrappers to the functions they are wrapping. The whole point is to
|
410
|
+
construct standard call sequences, but to do the call itself with a
|
411
|
+
special no-redirect call pseudo-instruction that the JIT
|
412
|
+
understands and handles specially. This section is long and
|
413
|
+
repetitious, and I can't see a way to make it shorter.
|
414
|
+
|
415
|
+
The naming scheme is as follows:
|
416
|
+
|
417
|
+
CALL_FN_{W,v}_{v,W,WW,WWW,WWWW,5W,6W,7W,etc}
|
418
|
+
|
419
|
+
'W' stands for "word" and 'v' for "void". Hence there are
|
420
|
+
different macros for calling arity 0, 1, 2, 3, 4, etc, functions,
|
421
|
+
and for each, the possibility of returning a word-typed result, or
|
422
|
+
no result.
|
423
|
+
*/
|
424
|
+
|
425
|
+
/* Use these to write the name of your wrapper. NOTE: duplicates
|
426
|
+
VG_WRAP_FUNCTION_Z{U,Z} in pub_tool_redir.h. */
|
427
|
+
|
428
|
+
#define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \
|
429
|
+
_vgwZU_##soname##_##fnname
|
430
|
+
|
431
|
+
#define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \
|
432
|
+
_vgwZZ_##soname##_##fnname
|
433
|
+
|
434
|
+
/* Use this macro from within a wrapper function to collect the
|
435
|
+
context (address and possibly other info) of the original function.
|
436
|
+
Once you have that you can then use it in one of the CALL_FN_
|
437
|
+
macros. The type of the argument _lval is OrigFn. */
|
438
|
+
#define VALGRIND_GET_ORIG_FN(_lval) VALGRIND_GET_NR_CONTEXT(_lval)
|
439
|
+
|
440
|
+
/* Derivatives of the main macros below, for calling functions
|
441
|
+
returning void. */
|
442
|
+
|
443
|
+
#define CALL_FN_v_v(fnptr) \
|
444
|
+
do { volatile unsigned long _junk; \
|
445
|
+
CALL_FN_W_v(_junk,fnptr); } while (0)
|
446
|
+
|
447
|
+
#define CALL_FN_v_W(fnptr, arg1) \
|
448
|
+
do { volatile unsigned long _junk; \
|
449
|
+
CALL_FN_W_W(_junk,fnptr,arg1); } while (0)
|
450
|
+
|
451
|
+
#define CALL_FN_v_WW(fnptr, arg1,arg2) \
|
452
|
+
do { volatile unsigned long _junk; \
|
453
|
+
CALL_FN_W_WW(_junk,fnptr,arg1,arg2); } while (0)
|
454
|
+
|
455
|
+
#define CALL_FN_v_WWW(fnptr, arg1,arg2,arg3) \
|
456
|
+
do { volatile unsigned long _junk; \
|
457
|
+
CALL_FN_W_WWW(_junk,fnptr,arg1,arg2,arg3); } while (0)
|
458
|
+
|
459
|
+
/* ---------------------------- x86 ---------------------------- */
|
460
|
+
|
461
|
+
#if defined(ARCH_x86)
|
462
|
+
|
463
|
+
/* These regs are trashed by the hidden call. No need to mention eax
|
464
|
+
as gcc can already see that, plus causes gcc to bomb. */
|
465
|
+
#define __CALLER_SAVED_REGS /*"eax"*/ "ecx", "edx"
|
466
|
+
|
467
|
+
/* These CALL_FN_ macros assume that on x86-linux, sizeof(unsigned
|
468
|
+
long) == 4. */
|
469
|
+
|
470
|
+
#define CALL_FN_W_v(lval, orig) \
|
471
|
+
do { \
|
472
|
+
volatile OrigFn _orig = (orig); \
|
473
|
+
volatile unsigned long _argvec[1]; \
|
474
|
+
volatile unsigned long _res; \
|
475
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
476
|
+
__asm__ volatile( \
|
477
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
478
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
479
|
+
: /*out*/ "=a" (_res) \
|
480
|
+
: /*in*/ "a" (&_argvec[0]) \
|
481
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
482
|
+
); \
|
483
|
+
lval = (__typeof__(lval)) _res; \
|
484
|
+
} while (0)
|
485
|
+
|
486
|
+
#define CALL_FN_W_W(lval, orig, arg1) \
|
487
|
+
do { \
|
488
|
+
volatile OrigFn _orig = (orig); \
|
489
|
+
volatile unsigned long _argvec[2]; \
|
490
|
+
volatile unsigned long _res; \
|
491
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
492
|
+
_argvec[1] = (unsigned long)(arg1); \
|
493
|
+
__asm__ volatile( \
|
494
|
+
"pushl 4(%%eax)\n\t" \
|
495
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
496
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
497
|
+
"addl $4, %%esp\n" \
|
498
|
+
: /*out*/ "=a" (_res) \
|
499
|
+
: /*in*/ "a" (&_argvec[0]) \
|
500
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
501
|
+
); \
|
502
|
+
lval = (__typeof__(lval)) _res; \
|
503
|
+
} while (0)
|
504
|
+
|
505
|
+
#define CALL_FN_W_WW(lval, orig, arg1,arg2) \
|
506
|
+
do { \
|
507
|
+
volatile OrigFn _orig = (orig); \
|
508
|
+
volatile unsigned long _argvec[3]; \
|
509
|
+
volatile unsigned long _res; \
|
510
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
511
|
+
_argvec[1] = (unsigned long)(arg1); \
|
512
|
+
_argvec[2] = (unsigned long)(arg2); \
|
513
|
+
__asm__ volatile( \
|
514
|
+
"pushl 8(%%eax)\n\t" \
|
515
|
+
"pushl 4(%%eax)\n\t" \
|
516
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
517
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
518
|
+
"addl $8, %%esp\n" \
|
519
|
+
: /*out*/ "=a" (_res) \
|
520
|
+
: /*in*/ "a" (&_argvec[0]) \
|
521
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
522
|
+
); \
|
523
|
+
lval = (__typeof__(lval)) _res; \
|
524
|
+
} while (0)
|
525
|
+
|
526
|
+
#define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
|
527
|
+
do { \
|
528
|
+
volatile OrigFn _orig = (orig); \
|
529
|
+
volatile unsigned long _argvec[4]; \
|
530
|
+
volatile unsigned long _res; \
|
531
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
532
|
+
_argvec[1] = (unsigned long)(arg1); \
|
533
|
+
_argvec[2] = (unsigned long)(arg2); \
|
534
|
+
_argvec[3] = (unsigned long)(arg3); \
|
535
|
+
__asm__ volatile( \
|
536
|
+
"pushl 12(%%eax)\n\t" \
|
537
|
+
"pushl 8(%%eax)\n\t" \
|
538
|
+
"pushl 4(%%eax)\n\t" \
|
539
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
540
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
541
|
+
"addl $12, %%esp\n" \
|
542
|
+
: /*out*/ "=a" (_res) \
|
543
|
+
: /*in*/ "a" (&_argvec[0]) \
|
544
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
545
|
+
); \
|
546
|
+
lval = (__typeof__(lval)) _res; \
|
547
|
+
} while (0)
|
548
|
+
|
549
|
+
#define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
|
550
|
+
do { \
|
551
|
+
volatile OrigFn _orig = (orig); \
|
552
|
+
volatile unsigned long _argvec[5]; \
|
553
|
+
volatile unsigned long _res; \
|
554
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
555
|
+
_argvec[1] = (unsigned long)(arg1); \
|
556
|
+
_argvec[2] = (unsigned long)(arg2); \
|
557
|
+
_argvec[3] = (unsigned long)(arg3); \
|
558
|
+
_argvec[4] = (unsigned long)(arg4); \
|
559
|
+
__asm__ volatile( \
|
560
|
+
"pushl 16(%%eax)\n\t" \
|
561
|
+
"pushl 12(%%eax)\n\t" \
|
562
|
+
"pushl 8(%%eax)\n\t" \
|
563
|
+
"pushl 4(%%eax)\n\t" \
|
564
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
565
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
566
|
+
"addl $16, %%esp\n" \
|
567
|
+
: /*out*/ "=a" (_res) \
|
568
|
+
: /*in*/ "a" (&_argvec[0]) \
|
569
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
570
|
+
); \
|
571
|
+
lval = (__typeof__(lval)) _res; \
|
572
|
+
} while (0)
|
573
|
+
|
574
|
+
#define CALL_FN_W_5W(lval, orig, arg1,arg2,arg3,arg4,arg5) \
|
575
|
+
do { \
|
576
|
+
volatile OrigFn _orig = (orig); \
|
577
|
+
volatile unsigned long _argvec[6]; \
|
578
|
+
volatile unsigned long _res; \
|
579
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
580
|
+
_argvec[1] = (unsigned long)(arg1); \
|
581
|
+
_argvec[2] = (unsigned long)(arg2); \
|
582
|
+
_argvec[3] = (unsigned long)(arg3); \
|
583
|
+
_argvec[4] = (unsigned long)(arg4); \
|
584
|
+
_argvec[5] = (unsigned long)(arg5); \
|
585
|
+
__asm__ volatile( \
|
586
|
+
"pushl 20(%%eax)\n\t" \
|
587
|
+
"pushl 16(%%eax)\n\t" \
|
588
|
+
"pushl 12(%%eax)\n\t" \
|
589
|
+
"pushl 8(%%eax)\n\t" \
|
590
|
+
"pushl 4(%%eax)\n\t" \
|
591
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
592
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
593
|
+
"addl $20, %%esp\n" \
|
594
|
+
: /*out*/ "=a" (_res) \
|
595
|
+
: /*in*/ "a" (&_argvec[0]) \
|
596
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
597
|
+
); \
|
598
|
+
lval = (__typeof__(lval)) _res; \
|
599
|
+
} while (0)
|
600
|
+
|
601
|
+
#define CALL_FN_W_6W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6) \
|
602
|
+
do { \
|
603
|
+
volatile OrigFn _orig = (orig); \
|
604
|
+
volatile unsigned long _argvec[7]; \
|
605
|
+
volatile unsigned long _res; \
|
606
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
607
|
+
_argvec[1] = (unsigned long)(arg1); \
|
608
|
+
_argvec[2] = (unsigned long)(arg2); \
|
609
|
+
_argvec[3] = (unsigned long)(arg3); \
|
610
|
+
_argvec[4] = (unsigned long)(arg4); \
|
611
|
+
_argvec[5] = (unsigned long)(arg5); \
|
612
|
+
_argvec[6] = (unsigned long)(arg6); \
|
613
|
+
__asm__ volatile( \
|
614
|
+
"pushl 24(%%eax)\n\t" \
|
615
|
+
"pushl 20(%%eax)\n\t" \
|
616
|
+
"pushl 16(%%eax)\n\t" \
|
617
|
+
"pushl 12(%%eax)\n\t" \
|
618
|
+
"pushl 8(%%eax)\n\t" \
|
619
|
+
"pushl 4(%%eax)\n\t" \
|
620
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
621
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
622
|
+
"addl $24, %%esp\n" \
|
623
|
+
: /*out*/ "=a" (_res) \
|
624
|
+
: /*in*/ "a" (&_argvec[0]) \
|
625
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
626
|
+
); \
|
627
|
+
lval = (__typeof__(lval)) _res; \
|
628
|
+
} while (0)
|
629
|
+
|
630
|
+
#define CALL_FN_W_7W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
631
|
+
arg7) \
|
632
|
+
do { \
|
633
|
+
volatile OrigFn _orig = (orig); \
|
634
|
+
volatile unsigned long _argvec[8]; \
|
635
|
+
volatile unsigned long _res; \
|
636
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
637
|
+
_argvec[1] = (unsigned long)(arg1); \
|
638
|
+
_argvec[2] = (unsigned long)(arg2); \
|
639
|
+
_argvec[3] = (unsigned long)(arg3); \
|
640
|
+
_argvec[4] = (unsigned long)(arg4); \
|
641
|
+
_argvec[5] = (unsigned long)(arg5); \
|
642
|
+
_argvec[6] = (unsigned long)(arg6); \
|
643
|
+
_argvec[7] = (unsigned long)(arg7); \
|
644
|
+
__asm__ volatile( \
|
645
|
+
"pushl 28(%%eax)\n\t" \
|
646
|
+
"pushl 24(%%eax)\n\t" \
|
647
|
+
"pushl 20(%%eax)\n\t" \
|
648
|
+
"pushl 16(%%eax)\n\t" \
|
649
|
+
"pushl 12(%%eax)\n\t" \
|
650
|
+
"pushl 8(%%eax)\n\t" \
|
651
|
+
"pushl 4(%%eax)\n\t" \
|
652
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
653
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
654
|
+
"addl $28, %%esp\n" \
|
655
|
+
: /*out*/ "=a" (_res) \
|
656
|
+
: /*in*/ "a" (&_argvec[0]) \
|
657
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
658
|
+
); \
|
659
|
+
lval = (__typeof__(lval)) _res; \
|
660
|
+
} while (0)
|
661
|
+
|
662
|
+
#define CALL_FN_W_8W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
663
|
+
arg7,arg8) \
|
664
|
+
do { \
|
665
|
+
volatile OrigFn _orig = (orig); \
|
666
|
+
volatile unsigned long _argvec[9]; \
|
667
|
+
volatile unsigned long _res; \
|
668
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
669
|
+
_argvec[1] = (unsigned long)(arg1); \
|
670
|
+
_argvec[2] = (unsigned long)(arg2); \
|
671
|
+
_argvec[3] = (unsigned long)(arg3); \
|
672
|
+
_argvec[4] = (unsigned long)(arg4); \
|
673
|
+
_argvec[5] = (unsigned long)(arg5); \
|
674
|
+
_argvec[6] = (unsigned long)(arg6); \
|
675
|
+
_argvec[7] = (unsigned long)(arg7); \
|
676
|
+
_argvec[8] = (unsigned long)(arg8); \
|
677
|
+
__asm__ volatile( \
|
678
|
+
"pushl 32(%%eax)\n\t" \
|
679
|
+
"pushl 28(%%eax)\n\t" \
|
680
|
+
"pushl 24(%%eax)\n\t" \
|
681
|
+
"pushl 20(%%eax)\n\t" \
|
682
|
+
"pushl 16(%%eax)\n\t" \
|
683
|
+
"pushl 12(%%eax)\n\t" \
|
684
|
+
"pushl 8(%%eax)\n\t" \
|
685
|
+
"pushl 4(%%eax)\n\t" \
|
686
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
687
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
688
|
+
"addl $32, %%esp\n" \
|
689
|
+
: /*out*/ "=a" (_res) \
|
690
|
+
: /*in*/ "a" (&_argvec[0]) \
|
691
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
692
|
+
); \
|
693
|
+
lval = (__typeof__(lval)) _res; \
|
694
|
+
} while (0)
|
695
|
+
|
696
|
+
#define CALL_FN_W_9W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
697
|
+
arg7,arg8,arg9) \
|
698
|
+
do { \
|
699
|
+
volatile OrigFn _orig = (orig); \
|
700
|
+
volatile unsigned long _argvec[10]; \
|
701
|
+
volatile unsigned long _res; \
|
702
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
703
|
+
_argvec[1] = (unsigned long)(arg1); \
|
704
|
+
_argvec[2] = (unsigned long)(arg2); \
|
705
|
+
_argvec[3] = (unsigned long)(arg3); \
|
706
|
+
_argvec[4] = (unsigned long)(arg4); \
|
707
|
+
_argvec[5] = (unsigned long)(arg5); \
|
708
|
+
_argvec[6] = (unsigned long)(arg6); \
|
709
|
+
_argvec[7] = (unsigned long)(arg7); \
|
710
|
+
_argvec[8] = (unsigned long)(arg8); \
|
711
|
+
_argvec[9] = (unsigned long)(arg9); \
|
712
|
+
__asm__ volatile( \
|
713
|
+
"pushl 36(%%eax)\n\t" \
|
714
|
+
"pushl 32(%%eax)\n\t" \
|
715
|
+
"pushl 28(%%eax)\n\t" \
|
716
|
+
"pushl 24(%%eax)\n\t" \
|
717
|
+
"pushl 20(%%eax)\n\t" \
|
718
|
+
"pushl 16(%%eax)\n\t" \
|
719
|
+
"pushl 12(%%eax)\n\t" \
|
720
|
+
"pushl 8(%%eax)\n\t" \
|
721
|
+
"pushl 4(%%eax)\n\t" \
|
722
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
723
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
724
|
+
"addl $36, %%esp\n" \
|
725
|
+
: /*out*/ "=a" (_res) \
|
726
|
+
: /*in*/ "a" (&_argvec[0]) \
|
727
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
728
|
+
); \
|
729
|
+
lval = (__typeof__(lval)) _res; \
|
730
|
+
} while (0)
|
731
|
+
|
732
|
+
#define CALL_FN_W_10W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
733
|
+
arg7,arg8,arg9,arg10) \
|
734
|
+
do { \
|
735
|
+
volatile OrigFn _orig = (orig); \
|
736
|
+
volatile unsigned long _argvec[11]; \
|
737
|
+
volatile unsigned long _res; \
|
738
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
739
|
+
_argvec[1] = (unsigned long)(arg1); \
|
740
|
+
_argvec[2] = (unsigned long)(arg2); \
|
741
|
+
_argvec[3] = (unsigned long)(arg3); \
|
742
|
+
_argvec[4] = (unsigned long)(arg4); \
|
743
|
+
_argvec[5] = (unsigned long)(arg5); \
|
744
|
+
_argvec[6] = (unsigned long)(arg6); \
|
745
|
+
_argvec[7] = (unsigned long)(arg7); \
|
746
|
+
_argvec[8] = (unsigned long)(arg8); \
|
747
|
+
_argvec[9] = (unsigned long)(arg9); \
|
748
|
+
_argvec[10] = (unsigned long)(arg10); \
|
749
|
+
__asm__ volatile( \
|
750
|
+
"pushl 40(%%eax)\n\t" \
|
751
|
+
"pushl 36(%%eax)\n\t" \
|
752
|
+
"pushl 32(%%eax)\n\t" \
|
753
|
+
"pushl 28(%%eax)\n\t" \
|
754
|
+
"pushl 24(%%eax)\n\t" \
|
755
|
+
"pushl 20(%%eax)\n\t" \
|
756
|
+
"pushl 16(%%eax)\n\t" \
|
757
|
+
"pushl 12(%%eax)\n\t" \
|
758
|
+
"pushl 8(%%eax)\n\t" \
|
759
|
+
"pushl 4(%%eax)\n\t" \
|
760
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
761
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
762
|
+
"addl $40, %%esp\n" \
|
763
|
+
: /*out*/ "=a" (_res) \
|
764
|
+
: /*in*/ "a" (&_argvec[0]) \
|
765
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
766
|
+
); \
|
767
|
+
lval = (__typeof__(lval)) _res; \
|
768
|
+
} while (0)
|
769
|
+
|
770
|
+
#define CALL_FN_W_11W(lval, orig, arg1,arg2,arg3,arg4,arg5, \
|
771
|
+
arg6,arg7,arg8,arg9,arg10, \
|
772
|
+
arg11) \
|
773
|
+
do { \
|
774
|
+
volatile OrigFn _orig = (orig); \
|
775
|
+
volatile unsigned long _argvec[12]; \
|
776
|
+
volatile unsigned long _res; \
|
777
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
778
|
+
_argvec[1] = (unsigned long)(arg1); \
|
779
|
+
_argvec[2] = (unsigned long)(arg2); \
|
780
|
+
_argvec[3] = (unsigned long)(arg3); \
|
781
|
+
_argvec[4] = (unsigned long)(arg4); \
|
782
|
+
_argvec[5] = (unsigned long)(arg5); \
|
783
|
+
_argvec[6] = (unsigned long)(arg6); \
|
784
|
+
_argvec[7] = (unsigned long)(arg7); \
|
785
|
+
_argvec[8] = (unsigned long)(arg8); \
|
786
|
+
_argvec[9] = (unsigned long)(arg9); \
|
787
|
+
_argvec[10] = (unsigned long)(arg10); \
|
788
|
+
_argvec[11] = (unsigned long)(arg11); \
|
789
|
+
__asm__ volatile( \
|
790
|
+
"pushl 44(%%eax)\n\t" \
|
791
|
+
"pushl 40(%%eax)\n\t" \
|
792
|
+
"pushl 36(%%eax)\n\t" \
|
793
|
+
"pushl 32(%%eax)\n\t" \
|
794
|
+
"pushl 28(%%eax)\n\t" \
|
795
|
+
"pushl 24(%%eax)\n\t" \
|
796
|
+
"pushl 20(%%eax)\n\t" \
|
797
|
+
"pushl 16(%%eax)\n\t" \
|
798
|
+
"pushl 12(%%eax)\n\t" \
|
799
|
+
"pushl 8(%%eax)\n\t" \
|
800
|
+
"pushl 4(%%eax)\n\t" \
|
801
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
802
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
803
|
+
"addl $44, %%esp\n" \
|
804
|
+
: /*out*/ "=a" (_res) \
|
805
|
+
: /*in*/ "a" (&_argvec[0]) \
|
806
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
807
|
+
); \
|
808
|
+
lval = (__typeof__(lval)) _res; \
|
809
|
+
} while (0)
|
810
|
+
|
811
|
+
#define CALL_FN_W_12W(lval, orig, arg1,arg2,arg3,arg4,arg5, \
|
812
|
+
arg6,arg7,arg8,arg9,arg10, \
|
813
|
+
arg11,arg12) \
|
814
|
+
do { \
|
815
|
+
volatile OrigFn _orig = (orig); \
|
816
|
+
volatile unsigned long _argvec[13]; \
|
817
|
+
volatile unsigned long _res; \
|
818
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
819
|
+
_argvec[1] = (unsigned long)(arg1); \
|
820
|
+
_argvec[2] = (unsigned long)(arg2); \
|
821
|
+
_argvec[3] = (unsigned long)(arg3); \
|
822
|
+
_argvec[4] = (unsigned long)(arg4); \
|
823
|
+
_argvec[5] = (unsigned long)(arg5); \
|
824
|
+
_argvec[6] = (unsigned long)(arg6); \
|
825
|
+
_argvec[7] = (unsigned long)(arg7); \
|
826
|
+
_argvec[8] = (unsigned long)(arg8); \
|
827
|
+
_argvec[9] = (unsigned long)(arg9); \
|
828
|
+
_argvec[10] = (unsigned long)(arg10); \
|
829
|
+
_argvec[11] = (unsigned long)(arg11); \
|
830
|
+
_argvec[12] = (unsigned long)(arg12); \
|
831
|
+
__asm__ volatile( \
|
832
|
+
"pushl 48(%%eax)\n\t" \
|
833
|
+
"pushl 44(%%eax)\n\t" \
|
834
|
+
"pushl 40(%%eax)\n\t" \
|
835
|
+
"pushl 36(%%eax)\n\t" \
|
836
|
+
"pushl 32(%%eax)\n\t" \
|
837
|
+
"pushl 28(%%eax)\n\t" \
|
838
|
+
"pushl 24(%%eax)\n\t" \
|
839
|
+
"pushl 20(%%eax)\n\t" \
|
840
|
+
"pushl 16(%%eax)\n\t" \
|
841
|
+
"pushl 12(%%eax)\n\t" \
|
842
|
+
"pushl 8(%%eax)\n\t" \
|
843
|
+
"pushl 4(%%eax)\n\t" \
|
844
|
+
"movl (%%eax), %%eax\n\t" /* target->%eax */ \
|
845
|
+
VALGRIND_CALL_NOREDIR_EAX \
|
846
|
+
"addl $48, %%esp\n" \
|
847
|
+
: /*out*/ "=a" (_res) \
|
848
|
+
: /*in*/ "a" (&_argvec[0]) \
|
849
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
850
|
+
); \
|
851
|
+
lval = (__typeof__(lval)) _res; \
|
852
|
+
} while (0)
|
853
|
+
|
854
|
+
#endif /* ARCH_x86 */
|
855
|
+
|
856
|
+
/* --------------------------- amd64 --------------------------- */
|
857
|
+
|
858
|
+
#if defined(ARCH_amd64)
|
859
|
+
|
860
|
+
/* ARGREGS: rdi rsi rdx rcx r8 r9 (the rest on stack in R-to-L order) */
|
861
|
+
|
862
|
+
/* These regs are trashed by the hidden call. */
|
863
|
+
#define __CALLER_SAVED_REGS /*"rax",*/ "rcx", "rdx", "rsi", \
|
864
|
+
"rdi", "r8", "r9", "r10", "r11"
|
865
|
+
|
866
|
+
/* These CALL_FN_ macros assume that on amd64-linux, sizeof(unsigned
|
867
|
+
long) == 8. */
|
868
|
+
|
869
|
+
#define CALL_FN_W_v(lval, orig) \
|
870
|
+
do { \
|
871
|
+
volatile OrigFn _orig = (orig); \
|
872
|
+
volatile unsigned long _argvec[1]; \
|
873
|
+
volatile unsigned long _res; \
|
874
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
875
|
+
__asm__ volatile( \
|
876
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
877
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
878
|
+
: /*out*/ "=a" (_res) \
|
879
|
+
: /*in*/ "a" (&_argvec[0]) \
|
880
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
881
|
+
); \
|
882
|
+
lval = (__typeof__(lval)) _res; \
|
883
|
+
} while (0)
|
884
|
+
|
885
|
+
#define CALL_FN_W_W(lval, orig, arg1) \
|
886
|
+
do { \
|
887
|
+
volatile OrigFn _orig = (orig); \
|
888
|
+
volatile unsigned long _argvec[2]; \
|
889
|
+
volatile unsigned long _res; \
|
890
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
891
|
+
_argvec[1] = (unsigned long)(arg1); \
|
892
|
+
__asm__ volatile( \
|
893
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
894
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
895
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
896
|
+
: /*out*/ "=a" (_res) \
|
897
|
+
: /*in*/ "a" (&_argvec[0]) \
|
898
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
899
|
+
); \
|
900
|
+
lval = (__typeof__(lval)) _res; \
|
901
|
+
} while (0)
|
902
|
+
|
903
|
+
#define CALL_FN_W_WW(lval, orig, arg1,arg2) \
|
904
|
+
do { \
|
905
|
+
volatile OrigFn _orig = (orig); \
|
906
|
+
volatile unsigned long _argvec[3]; \
|
907
|
+
volatile unsigned long _res; \
|
908
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
909
|
+
_argvec[1] = (unsigned long)(arg1); \
|
910
|
+
_argvec[2] = (unsigned long)(arg2); \
|
911
|
+
__asm__ volatile( \
|
912
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
913
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
914
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
915
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
916
|
+
: /*out*/ "=a" (_res) \
|
917
|
+
: /*in*/ "a" (&_argvec[0]) \
|
918
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
919
|
+
); \
|
920
|
+
lval = (__typeof__(lval)) _res; \
|
921
|
+
} while (0)
|
922
|
+
|
923
|
+
#define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
|
924
|
+
do { \
|
925
|
+
volatile OrigFn _orig = (orig); \
|
926
|
+
volatile unsigned long _argvec[4]; \
|
927
|
+
volatile unsigned long _res; \
|
928
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
929
|
+
_argvec[1] = (unsigned long)(arg1); \
|
930
|
+
_argvec[2] = (unsigned long)(arg2); \
|
931
|
+
_argvec[3] = (unsigned long)(arg3); \
|
932
|
+
__asm__ volatile( \
|
933
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
934
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
935
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
936
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
937
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
938
|
+
: /*out*/ "=a" (_res) \
|
939
|
+
: /*in*/ "a" (&_argvec[0]) \
|
940
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
941
|
+
); \
|
942
|
+
lval = (__typeof__(lval)) _res; \
|
943
|
+
} while (0)
|
944
|
+
|
945
|
+
#define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
|
946
|
+
do { \
|
947
|
+
volatile OrigFn _orig = (orig); \
|
948
|
+
volatile unsigned long _argvec[5]; \
|
949
|
+
volatile unsigned long _res; \
|
950
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
951
|
+
_argvec[1] = (unsigned long)(arg1); \
|
952
|
+
_argvec[2] = (unsigned long)(arg2); \
|
953
|
+
_argvec[3] = (unsigned long)(arg3); \
|
954
|
+
_argvec[4] = (unsigned long)(arg4); \
|
955
|
+
__asm__ volatile( \
|
956
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
957
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
958
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
959
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
960
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
961
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
962
|
+
: /*out*/ "=a" (_res) \
|
963
|
+
: /*in*/ "a" (&_argvec[0]) \
|
964
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
965
|
+
); \
|
966
|
+
lval = (__typeof__(lval)) _res; \
|
967
|
+
} while (0)
|
968
|
+
|
969
|
+
#define CALL_FN_W_5W(lval, orig, arg1,arg2,arg3,arg4,arg5) \
|
970
|
+
do { \
|
971
|
+
volatile OrigFn _orig = (orig); \
|
972
|
+
volatile unsigned long _argvec[6]; \
|
973
|
+
volatile unsigned long _res; \
|
974
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
975
|
+
_argvec[1] = (unsigned long)(arg1); \
|
976
|
+
_argvec[2] = (unsigned long)(arg2); \
|
977
|
+
_argvec[3] = (unsigned long)(arg3); \
|
978
|
+
_argvec[4] = (unsigned long)(arg4); \
|
979
|
+
_argvec[5] = (unsigned long)(arg5); \
|
980
|
+
__asm__ volatile( \
|
981
|
+
"movq 40(%%rax), %%r8\n\t" \
|
982
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
983
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
984
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
985
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
986
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
987
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
988
|
+
: /*out*/ "=a" (_res) \
|
989
|
+
: /*in*/ "a" (&_argvec[0]) \
|
990
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
991
|
+
); \
|
992
|
+
lval = (__typeof__(lval)) _res; \
|
993
|
+
} while (0)
|
994
|
+
|
995
|
+
#define CALL_FN_W_6W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6) \
|
996
|
+
do { \
|
997
|
+
volatile OrigFn _orig = (orig); \
|
998
|
+
volatile unsigned long _argvec[7]; \
|
999
|
+
volatile unsigned long _res; \
|
1000
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1001
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1002
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1003
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1004
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1005
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1006
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1007
|
+
__asm__ volatile( \
|
1008
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1009
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1010
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1011
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1012
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1013
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1014
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1015
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1016
|
+
: /*out*/ "=a" (_res) \
|
1017
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1018
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1019
|
+
); \
|
1020
|
+
lval = (__typeof__(lval)) _res; \
|
1021
|
+
} while (0)
|
1022
|
+
|
1023
|
+
#define CALL_FN_W_7W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1024
|
+
arg7) \
|
1025
|
+
do { \
|
1026
|
+
volatile OrigFn _orig = (orig); \
|
1027
|
+
volatile unsigned long _argvec[8]; \
|
1028
|
+
volatile unsigned long _res; \
|
1029
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1030
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1031
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1032
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1033
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1034
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1035
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1036
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1037
|
+
__asm__ volatile( \
|
1038
|
+
"pushq 56(%%rax)\n\t" \
|
1039
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1040
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1041
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1042
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1043
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1044
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1045
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1046
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1047
|
+
"addq $8, %%rsp\n" \
|
1048
|
+
: /*out*/ "=a" (_res) \
|
1049
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1050
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1051
|
+
); \
|
1052
|
+
lval = (__typeof__(lval)) _res; \
|
1053
|
+
} while (0)
|
1054
|
+
|
1055
|
+
#define CALL_FN_W_8W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1056
|
+
arg7,arg8) \
|
1057
|
+
do { \
|
1058
|
+
volatile OrigFn _orig = (orig); \
|
1059
|
+
volatile unsigned long _argvec[9]; \
|
1060
|
+
volatile unsigned long _res; \
|
1061
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1062
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1063
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1064
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1065
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1066
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1067
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1068
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1069
|
+
_argvec[8] = (unsigned long)(arg8); \
|
1070
|
+
__asm__ volatile( \
|
1071
|
+
"pushq 64(%%rax)\n\t" \
|
1072
|
+
"pushq 56(%%rax)\n\t" \
|
1073
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1074
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1075
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1076
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1077
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1078
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1079
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1080
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1081
|
+
"addq $16, %%rsp\n" \
|
1082
|
+
: /*out*/ "=a" (_res) \
|
1083
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1084
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1085
|
+
); \
|
1086
|
+
lval = (__typeof__(lval)) _res; \
|
1087
|
+
} while (0)
|
1088
|
+
|
1089
|
+
#define CALL_FN_W_9W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1090
|
+
arg7,arg8,arg9) \
|
1091
|
+
do { \
|
1092
|
+
volatile OrigFn _orig = (orig); \
|
1093
|
+
volatile unsigned long _argvec[10]; \
|
1094
|
+
volatile unsigned long _res; \
|
1095
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1096
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1097
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1098
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1099
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1100
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1101
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1102
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1103
|
+
_argvec[8] = (unsigned long)(arg8); \
|
1104
|
+
_argvec[9] = (unsigned long)(arg9); \
|
1105
|
+
__asm__ volatile( \
|
1106
|
+
"pushq 72(%%rax)\n\t" \
|
1107
|
+
"pushq 64(%%rax)\n\t" \
|
1108
|
+
"pushq 56(%%rax)\n\t" \
|
1109
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1110
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1111
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1112
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1113
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1114
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1115
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1116
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1117
|
+
"addq $24, %%rsp\n" \
|
1118
|
+
: /*out*/ "=a" (_res) \
|
1119
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1120
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1121
|
+
); \
|
1122
|
+
lval = (__typeof__(lval)) _res; \
|
1123
|
+
} while (0)
|
1124
|
+
|
1125
|
+
#define CALL_FN_W_10W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1126
|
+
arg7,arg8,arg9,arg10) \
|
1127
|
+
do { \
|
1128
|
+
volatile OrigFn _orig = (orig); \
|
1129
|
+
volatile unsigned long _argvec[11]; \
|
1130
|
+
volatile unsigned long _res; \
|
1131
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1132
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1133
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1134
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1135
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1136
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1137
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1138
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1139
|
+
_argvec[8] = (unsigned long)(arg8); \
|
1140
|
+
_argvec[9] = (unsigned long)(arg9); \
|
1141
|
+
_argvec[10] = (unsigned long)(arg10); \
|
1142
|
+
__asm__ volatile( \
|
1143
|
+
"pushq 80(%%rax)\n\t" \
|
1144
|
+
"pushq 72(%%rax)\n\t" \
|
1145
|
+
"pushq 64(%%rax)\n\t" \
|
1146
|
+
"pushq 56(%%rax)\n\t" \
|
1147
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1148
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1149
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1150
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1151
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1152
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1153
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1154
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1155
|
+
"addq $32, %%rsp\n" \
|
1156
|
+
: /*out*/ "=a" (_res) \
|
1157
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1158
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1159
|
+
); \
|
1160
|
+
lval = (__typeof__(lval)) _res; \
|
1161
|
+
} while (0)
|
1162
|
+
|
1163
|
+
#define CALL_FN_W_11W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1164
|
+
arg7,arg8,arg9,arg10,arg11) \
|
1165
|
+
do { \
|
1166
|
+
volatile OrigFn _orig = (orig); \
|
1167
|
+
volatile unsigned long _argvec[12]; \
|
1168
|
+
volatile unsigned long _res; \
|
1169
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1170
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1171
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1172
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1173
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1174
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1175
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1176
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1177
|
+
_argvec[8] = (unsigned long)(arg8); \
|
1178
|
+
_argvec[9] = (unsigned long)(arg9); \
|
1179
|
+
_argvec[10] = (unsigned long)(arg10); \
|
1180
|
+
_argvec[11] = (unsigned long)(arg11); \
|
1181
|
+
__asm__ volatile( \
|
1182
|
+
"pushq 88(%%rax)\n\t" \
|
1183
|
+
"pushq 80(%%rax)\n\t" \
|
1184
|
+
"pushq 72(%%rax)\n\t" \
|
1185
|
+
"pushq 64(%%rax)\n\t" \
|
1186
|
+
"pushq 56(%%rax)\n\t" \
|
1187
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1188
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1189
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1190
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1191
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1192
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1193
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1194
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1195
|
+
"addq $40, %%rsp\n" \
|
1196
|
+
: /*out*/ "=a" (_res) \
|
1197
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1198
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1199
|
+
); \
|
1200
|
+
lval = (__typeof__(lval)) _res; \
|
1201
|
+
} while (0)
|
1202
|
+
|
1203
|
+
#define CALL_FN_W_12W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1204
|
+
arg7,arg8,arg9,arg10,arg11,arg12) \
|
1205
|
+
do { \
|
1206
|
+
volatile OrigFn _orig = (orig); \
|
1207
|
+
volatile unsigned long _argvec[13]; \
|
1208
|
+
volatile unsigned long _res; \
|
1209
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1210
|
+
_argvec[1] = (unsigned long)(arg1); \
|
1211
|
+
_argvec[2] = (unsigned long)(arg2); \
|
1212
|
+
_argvec[3] = (unsigned long)(arg3); \
|
1213
|
+
_argvec[4] = (unsigned long)(arg4); \
|
1214
|
+
_argvec[5] = (unsigned long)(arg5); \
|
1215
|
+
_argvec[6] = (unsigned long)(arg6); \
|
1216
|
+
_argvec[7] = (unsigned long)(arg7); \
|
1217
|
+
_argvec[8] = (unsigned long)(arg8); \
|
1218
|
+
_argvec[9] = (unsigned long)(arg9); \
|
1219
|
+
_argvec[10] = (unsigned long)(arg10); \
|
1220
|
+
_argvec[11] = (unsigned long)(arg11); \
|
1221
|
+
_argvec[12] = (unsigned long)(arg12); \
|
1222
|
+
__asm__ volatile( \
|
1223
|
+
"pushq 96(%%rax)\n\t" \
|
1224
|
+
"pushq 88(%%rax)\n\t" \
|
1225
|
+
"pushq 80(%%rax)\n\t" \
|
1226
|
+
"pushq 72(%%rax)\n\t" \
|
1227
|
+
"pushq 64(%%rax)\n\t" \
|
1228
|
+
"pushq 56(%%rax)\n\t" \
|
1229
|
+
"movq 48(%%rax), %%r9\n\t" \
|
1230
|
+
"movq 40(%%rax), %%r8\n\t" \
|
1231
|
+
"movq 32(%%rax), %%rcx\n\t" \
|
1232
|
+
"movq 24(%%rax), %%rdx\n\t" \
|
1233
|
+
"movq 16(%%rax), %%rsi\n\t" \
|
1234
|
+
"movq 8(%%rax), %%rdi\n\t" \
|
1235
|
+
"movq (%%rax), %%rax\n\t" /* target->%rax */ \
|
1236
|
+
VALGRIND_CALL_NOREDIR_RAX \
|
1237
|
+
"addq $48, %%rsp\n" \
|
1238
|
+
: /*out*/ "=a" (_res) \
|
1239
|
+
: /*in*/ "a" (&_argvec[0]) \
|
1240
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1241
|
+
); \
|
1242
|
+
lval = (__typeof__(lval)) _res; \
|
1243
|
+
} while (0)
|
1244
|
+
|
1245
|
+
#endif /* ARCH_amd64 */
|
1246
|
+
|
1247
|
+
/* --------------------------- ppc32 --------------------------- */
|
1248
|
+
|
1249
|
+
#if defined(ARCH_ppc32)
|
1250
|
+
|
1251
|
+
/* This is useful for finding out about the on-stack stuff:
|
1252
|
+
|
1253
|
+
extern int f9 ( int,int,int,int,int,int,int,int,int );
|
1254
|
+
extern int f10 ( int,int,int,int,int,int,int,int,int,int );
|
1255
|
+
extern int f11 ( int,int,int,int,int,int,int,int,int,int,int );
|
1256
|
+
extern int f12 ( int,int,int,int,int,int,int,int,int,int,int,int );
|
1257
|
+
|
1258
|
+
int g9 ( void ) {
|
1259
|
+
return f9(11,22,33,44,55,66,77,88,99);
|
1260
|
+
}
|
1261
|
+
int g10 ( void ) {
|
1262
|
+
return f10(11,22,33,44,55,66,77,88,99,110);
|
1263
|
+
}
|
1264
|
+
int g11 ( void ) {
|
1265
|
+
return f11(11,22,33,44,55,66,77,88,99,110,121);
|
1266
|
+
}
|
1267
|
+
int g12 ( void ) {
|
1268
|
+
return f12(11,22,33,44,55,66,77,88,99,110,121,132);
|
1269
|
+
}
|
1270
|
+
*/
|
1271
|
+
|
1272
|
+
/* ARGREGS: r3 r4 r5 r6 r7 r8 r9 r10 (the rest on stack somewhere) */
|
1273
|
+
|
1274
|
+
/* These regs are trashed by the hidden call. */
|
1275
|
+
#define __CALLER_SAVED_REGS \
|
1276
|
+
"lr", "ctr", "xer", \
|
1277
|
+
"cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7", \
|
1278
|
+
"r0", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \
|
1279
|
+
"r11", "r12", "r13"
|
1280
|
+
|
1281
|
+
/* These CALL_FN_ macros assume that on ppc32-linux,
|
1282
|
+
sizeof(unsigned long) == 4. */
|
1283
|
+
|
1284
|
+
#define CALL_FN_W_v(lval, orig) \
|
1285
|
+
do { \
|
1286
|
+
volatile OrigFn _orig = (orig); \
|
1287
|
+
volatile unsigned long _argvec[1]; \
|
1288
|
+
volatile unsigned long _res; \
|
1289
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1290
|
+
__asm__ volatile( \
|
1291
|
+
"mr 11,%1\n\t" \
|
1292
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1293
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1294
|
+
"mr %0,3" \
|
1295
|
+
: /*out*/ "=r" (_res) \
|
1296
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1297
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1298
|
+
); \
|
1299
|
+
lval = (__typeof__(lval)) _res; \
|
1300
|
+
} while (0)
|
1301
|
+
|
1302
|
+
#define CALL_FN_W_W(lval, orig, arg1) \
|
1303
|
+
do { \
|
1304
|
+
volatile OrigFn _orig = (orig); \
|
1305
|
+
volatile unsigned long _argvec[2]; \
|
1306
|
+
volatile unsigned long _res; \
|
1307
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1308
|
+
_argvec[1] = (unsigned long)arg1; \
|
1309
|
+
__asm__ volatile( \
|
1310
|
+
"mr 11,%1\n\t" \
|
1311
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1312
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1313
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1314
|
+
"mr %0,3" \
|
1315
|
+
: /*out*/ "=r" (_res) \
|
1316
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1317
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1318
|
+
); \
|
1319
|
+
lval = (__typeof__(lval)) _res; \
|
1320
|
+
} while (0)
|
1321
|
+
|
1322
|
+
#define CALL_FN_W_WW(lval, orig, arg1,arg2) \
|
1323
|
+
do { \
|
1324
|
+
volatile OrigFn _orig = (orig); \
|
1325
|
+
volatile unsigned long _argvec[3]; \
|
1326
|
+
volatile unsigned long _res; \
|
1327
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1328
|
+
_argvec[1] = (unsigned long)arg1; \
|
1329
|
+
_argvec[2] = (unsigned long)arg2; \
|
1330
|
+
__asm__ volatile( \
|
1331
|
+
"mr 11,%1\n\t" \
|
1332
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1333
|
+
"lwz 4,8(11)\n\t" \
|
1334
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1335
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1336
|
+
"mr %0,3" \
|
1337
|
+
: /*out*/ "=r" (_res) \
|
1338
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1339
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1340
|
+
); \
|
1341
|
+
lval = (__typeof__(lval)) _res; \
|
1342
|
+
} while (0)
|
1343
|
+
|
1344
|
+
#define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
|
1345
|
+
do { \
|
1346
|
+
volatile OrigFn _orig = (orig); \
|
1347
|
+
volatile unsigned long _argvec[4]; \
|
1348
|
+
volatile unsigned long _res; \
|
1349
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1350
|
+
_argvec[1] = (unsigned long)arg1; \
|
1351
|
+
_argvec[2] = (unsigned long)arg2; \
|
1352
|
+
_argvec[3] = (unsigned long)arg3; \
|
1353
|
+
__asm__ volatile( \
|
1354
|
+
"mr 11,%1\n\t" \
|
1355
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1356
|
+
"lwz 4,8(11)\n\t" \
|
1357
|
+
"lwz 5,12(11)\n\t" \
|
1358
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1359
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1360
|
+
"mr %0,3" \
|
1361
|
+
: /*out*/ "=r" (_res) \
|
1362
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1363
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1364
|
+
); \
|
1365
|
+
lval = (__typeof__(lval)) _res; \
|
1366
|
+
} while (0)
|
1367
|
+
|
1368
|
+
#define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
|
1369
|
+
do { \
|
1370
|
+
volatile OrigFn _orig = (orig); \
|
1371
|
+
volatile unsigned long _argvec[5]; \
|
1372
|
+
volatile unsigned long _res; \
|
1373
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1374
|
+
_argvec[1] = (unsigned long)arg1; \
|
1375
|
+
_argvec[2] = (unsigned long)arg2; \
|
1376
|
+
_argvec[3] = (unsigned long)arg3; \
|
1377
|
+
_argvec[4] = (unsigned long)arg4; \
|
1378
|
+
__asm__ volatile( \
|
1379
|
+
"mr 11,%1\n\t" \
|
1380
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1381
|
+
"lwz 4,8(11)\n\t" \
|
1382
|
+
"lwz 5,12(11)\n\t" \
|
1383
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1384
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1385
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1386
|
+
"mr %0,3" \
|
1387
|
+
: /*out*/ "=r" (_res) \
|
1388
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1389
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1390
|
+
); \
|
1391
|
+
lval = (__typeof__(lval)) _res; \
|
1392
|
+
} while (0)
|
1393
|
+
|
1394
|
+
#define CALL_FN_W_5W(lval, orig, arg1,arg2,arg3,arg4,arg5) \
|
1395
|
+
do { \
|
1396
|
+
volatile OrigFn _orig = (orig); \
|
1397
|
+
volatile unsigned long _argvec[6]; \
|
1398
|
+
volatile unsigned long _res; \
|
1399
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1400
|
+
_argvec[1] = (unsigned long)arg1; \
|
1401
|
+
_argvec[2] = (unsigned long)arg2; \
|
1402
|
+
_argvec[3] = (unsigned long)arg3; \
|
1403
|
+
_argvec[4] = (unsigned long)arg4; \
|
1404
|
+
_argvec[5] = (unsigned long)arg5; \
|
1405
|
+
__asm__ volatile( \
|
1406
|
+
"mr 11,%1\n\t" \
|
1407
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1408
|
+
"lwz 4,8(11)\n\t" \
|
1409
|
+
"lwz 5,12(11)\n\t" \
|
1410
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1411
|
+
"lwz 7,20(11)\n\t" \
|
1412
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1413
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1414
|
+
"mr %0,3" \
|
1415
|
+
: /*out*/ "=r" (_res) \
|
1416
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1417
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1418
|
+
); \
|
1419
|
+
lval = (__typeof__(lval)) _res; \
|
1420
|
+
} while (0)
|
1421
|
+
|
1422
|
+
#define CALL_FN_W_6W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6) \
|
1423
|
+
do { \
|
1424
|
+
volatile OrigFn _orig = (orig); \
|
1425
|
+
volatile unsigned long _argvec[7]; \
|
1426
|
+
volatile unsigned long _res; \
|
1427
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1428
|
+
_argvec[1] = (unsigned long)arg1; \
|
1429
|
+
_argvec[2] = (unsigned long)arg2; \
|
1430
|
+
_argvec[3] = (unsigned long)arg3; \
|
1431
|
+
_argvec[4] = (unsigned long)arg4; \
|
1432
|
+
_argvec[5] = (unsigned long)arg5; \
|
1433
|
+
_argvec[6] = (unsigned long)arg6; \
|
1434
|
+
__asm__ volatile( \
|
1435
|
+
"mr 11,%1\n\t" \
|
1436
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1437
|
+
"lwz 4,8(11)\n\t" \
|
1438
|
+
"lwz 5,12(11)\n\t" \
|
1439
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1440
|
+
"lwz 7,20(11)\n\t" \
|
1441
|
+
"lwz 8,24(11)\n\t" \
|
1442
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1443
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1444
|
+
"mr %0,3" \
|
1445
|
+
: /*out*/ "=r" (_res) \
|
1446
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1447
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1448
|
+
); \
|
1449
|
+
lval = (__typeof__(lval)) _res; \
|
1450
|
+
} while (0)
|
1451
|
+
|
1452
|
+
#define CALL_FN_W_7W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1453
|
+
arg7) \
|
1454
|
+
do { \
|
1455
|
+
volatile OrigFn _orig = (orig); \
|
1456
|
+
volatile unsigned long _argvec[8]; \
|
1457
|
+
volatile unsigned long _res; \
|
1458
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1459
|
+
_argvec[1] = (unsigned long)arg1; \
|
1460
|
+
_argvec[2] = (unsigned long)arg2; \
|
1461
|
+
_argvec[3] = (unsigned long)arg3; \
|
1462
|
+
_argvec[4] = (unsigned long)arg4; \
|
1463
|
+
_argvec[5] = (unsigned long)arg5; \
|
1464
|
+
_argvec[6] = (unsigned long)arg6; \
|
1465
|
+
_argvec[7] = (unsigned long)arg7; \
|
1466
|
+
__asm__ volatile( \
|
1467
|
+
"mr 11,%1\n\t" \
|
1468
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1469
|
+
"lwz 4,8(11)\n\t" \
|
1470
|
+
"lwz 5,12(11)\n\t" \
|
1471
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1472
|
+
"lwz 7,20(11)\n\t" \
|
1473
|
+
"lwz 8,24(11)\n\t" \
|
1474
|
+
"lwz 9,28(11)\n\t" \
|
1475
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1476
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1477
|
+
"mr %0,3" \
|
1478
|
+
: /*out*/ "=r" (_res) \
|
1479
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1480
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1481
|
+
); \
|
1482
|
+
lval = (__typeof__(lval)) _res; \
|
1483
|
+
} while (0)
|
1484
|
+
|
1485
|
+
#define CALL_FN_W_8W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1486
|
+
arg7,arg8) \
|
1487
|
+
do { \
|
1488
|
+
volatile OrigFn _orig = (orig); \
|
1489
|
+
volatile unsigned long _argvec[9]; \
|
1490
|
+
volatile unsigned long _res; \
|
1491
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1492
|
+
_argvec[1] = (unsigned long)arg1; \
|
1493
|
+
_argvec[2] = (unsigned long)arg2; \
|
1494
|
+
_argvec[3] = (unsigned long)arg3; \
|
1495
|
+
_argvec[4] = (unsigned long)arg4; \
|
1496
|
+
_argvec[5] = (unsigned long)arg5; \
|
1497
|
+
_argvec[6] = (unsigned long)arg6; \
|
1498
|
+
_argvec[7] = (unsigned long)arg7; \
|
1499
|
+
_argvec[8] = (unsigned long)arg8; \
|
1500
|
+
__asm__ volatile( \
|
1501
|
+
"mr 11,%1\n\t" \
|
1502
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1503
|
+
"lwz 4,8(11)\n\t" \
|
1504
|
+
"lwz 5,12(11)\n\t" \
|
1505
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1506
|
+
"lwz 7,20(11)\n\t" \
|
1507
|
+
"lwz 8,24(11)\n\t" \
|
1508
|
+
"lwz 9,28(11)\n\t" \
|
1509
|
+
"lwz 10,32(11)\n\t" /* arg8->r10 */ \
|
1510
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1511
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1512
|
+
"mr %0,3" \
|
1513
|
+
: /*out*/ "=r" (_res) \
|
1514
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1515
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1516
|
+
); \
|
1517
|
+
lval = (__typeof__(lval)) _res; \
|
1518
|
+
} while (0)
|
1519
|
+
|
1520
|
+
#define CALL_FN_W_9W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1521
|
+
arg7,arg8,arg9) \
|
1522
|
+
do { \
|
1523
|
+
volatile OrigFn _orig = (orig); \
|
1524
|
+
volatile unsigned long _argvec[10]; \
|
1525
|
+
volatile unsigned long _res; \
|
1526
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1527
|
+
_argvec[1] = (unsigned long)arg1; \
|
1528
|
+
_argvec[2] = (unsigned long)arg2; \
|
1529
|
+
_argvec[3] = (unsigned long)arg3; \
|
1530
|
+
_argvec[4] = (unsigned long)arg4; \
|
1531
|
+
_argvec[5] = (unsigned long)arg5; \
|
1532
|
+
_argvec[6] = (unsigned long)arg6; \
|
1533
|
+
_argvec[7] = (unsigned long)arg7; \
|
1534
|
+
_argvec[8] = (unsigned long)arg8; \
|
1535
|
+
_argvec[9] = (unsigned long)arg9; \
|
1536
|
+
__asm__ volatile( \
|
1537
|
+
"mr 11,%1\n\t" \
|
1538
|
+
"addi 1,1,-16\n\t" \
|
1539
|
+
/* arg9 */ \
|
1540
|
+
"lwz 3,36(11)\n\t" \
|
1541
|
+
"stw 3,8(1)\n\t" \
|
1542
|
+
/* args1-8 */ \
|
1543
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1544
|
+
"lwz 4,8(11)\n\t" \
|
1545
|
+
"lwz 5,12(11)\n\t" \
|
1546
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1547
|
+
"lwz 7,20(11)\n\t" \
|
1548
|
+
"lwz 8,24(11)\n\t" \
|
1549
|
+
"lwz 9,28(11)\n\t" \
|
1550
|
+
"lwz 10,32(11)\n\t" /* arg8->r10 */ \
|
1551
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1552
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1553
|
+
"addi 1,1,16\n\t" \
|
1554
|
+
"mr %0,3" \
|
1555
|
+
: /*out*/ "=r" (_res) \
|
1556
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1557
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1558
|
+
); \
|
1559
|
+
lval = (__typeof__(lval)) _res; \
|
1560
|
+
} while (0)
|
1561
|
+
|
1562
|
+
#define CALL_FN_W_10W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1563
|
+
arg7,arg8,arg9,arg10) \
|
1564
|
+
do { \
|
1565
|
+
volatile OrigFn _orig = (orig); \
|
1566
|
+
volatile unsigned long _argvec[11]; \
|
1567
|
+
volatile unsigned long _res; \
|
1568
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1569
|
+
_argvec[1] = (unsigned long)arg1; \
|
1570
|
+
_argvec[2] = (unsigned long)arg2; \
|
1571
|
+
_argvec[3] = (unsigned long)arg3; \
|
1572
|
+
_argvec[4] = (unsigned long)arg4; \
|
1573
|
+
_argvec[5] = (unsigned long)arg5; \
|
1574
|
+
_argvec[6] = (unsigned long)arg6; \
|
1575
|
+
_argvec[7] = (unsigned long)arg7; \
|
1576
|
+
_argvec[8] = (unsigned long)arg8; \
|
1577
|
+
_argvec[9] = (unsigned long)arg9; \
|
1578
|
+
_argvec[10] = (unsigned long)arg10; \
|
1579
|
+
__asm__ volatile( \
|
1580
|
+
"mr 11,%1\n\t" \
|
1581
|
+
"addi 1,1,-16\n\t" \
|
1582
|
+
/* arg10 */ \
|
1583
|
+
"lwz 3,40(11)\n\t" \
|
1584
|
+
"stw 3,12(1)\n\t" \
|
1585
|
+
/* arg9 */ \
|
1586
|
+
"lwz 3,36(11)\n\t" \
|
1587
|
+
"stw 3,8(1)\n\t" \
|
1588
|
+
/* args1-8 */ \
|
1589
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1590
|
+
"lwz 4,8(11)\n\t" \
|
1591
|
+
"lwz 5,12(11)\n\t" \
|
1592
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1593
|
+
"lwz 7,20(11)\n\t" \
|
1594
|
+
"lwz 8,24(11)\n\t" \
|
1595
|
+
"lwz 9,28(11)\n\t" \
|
1596
|
+
"lwz 10,32(11)\n\t" /* arg8->r10 */ \
|
1597
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1598
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1599
|
+
"addi 1,1,16\n\t" \
|
1600
|
+
"mr %0,3" \
|
1601
|
+
: /*out*/ "=r" (_res) \
|
1602
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1603
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1604
|
+
); \
|
1605
|
+
lval = (__typeof__(lval)) _res; \
|
1606
|
+
} while (0)
|
1607
|
+
|
1608
|
+
#define CALL_FN_W_11W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1609
|
+
arg7,arg8,arg9,arg10,arg11) \
|
1610
|
+
do { \
|
1611
|
+
volatile OrigFn _orig = (orig); \
|
1612
|
+
volatile unsigned long _argvec[12]; \
|
1613
|
+
volatile unsigned long _res; \
|
1614
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1615
|
+
_argvec[1] = (unsigned long)arg1; \
|
1616
|
+
_argvec[2] = (unsigned long)arg2; \
|
1617
|
+
_argvec[3] = (unsigned long)arg3; \
|
1618
|
+
_argvec[4] = (unsigned long)arg4; \
|
1619
|
+
_argvec[5] = (unsigned long)arg5; \
|
1620
|
+
_argvec[6] = (unsigned long)arg6; \
|
1621
|
+
_argvec[7] = (unsigned long)arg7; \
|
1622
|
+
_argvec[8] = (unsigned long)arg8; \
|
1623
|
+
_argvec[9] = (unsigned long)arg9; \
|
1624
|
+
_argvec[10] = (unsigned long)arg10; \
|
1625
|
+
_argvec[11] = (unsigned long)arg11; \
|
1626
|
+
__asm__ volatile( \
|
1627
|
+
"mr 11,%1\n\t" \
|
1628
|
+
"addi 1,1,-32\n\t" \
|
1629
|
+
/* arg11 */ \
|
1630
|
+
"lwz 3,44(11)\n\t" \
|
1631
|
+
"stw 3,16(1)\n\t" \
|
1632
|
+
/* arg10 */ \
|
1633
|
+
"lwz 3,40(11)\n\t" \
|
1634
|
+
"stw 3,12(1)\n\t" \
|
1635
|
+
/* arg9 */ \
|
1636
|
+
"lwz 3,36(11)\n\t" \
|
1637
|
+
"stw 3,8(1)\n\t" \
|
1638
|
+
/* args1-8 */ \
|
1639
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1640
|
+
"lwz 4,8(11)\n\t" \
|
1641
|
+
"lwz 5,12(11)\n\t" \
|
1642
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1643
|
+
"lwz 7,20(11)\n\t" \
|
1644
|
+
"lwz 8,24(11)\n\t" \
|
1645
|
+
"lwz 9,28(11)\n\t" \
|
1646
|
+
"lwz 10,32(11)\n\t" /* arg8->r10 */ \
|
1647
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1648
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1649
|
+
"addi 1,1,32\n\t" \
|
1650
|
+
"mr %0,3" \
|
1651
|
+
: /*out*/ "=r" (_res) \
|
1652
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1653
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1654
|
+
); \
|
1655
|
+
lval = (__typeof__(lval)) _res; \
|
1656
|
+
} while (0)
|
1657
|
+
|
1658
|
+
#define CALL_FN_W_12W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1659
|
+
arg7,arg8,arg9,arg10,arg11,arg12) \
|
1660
|
+
do { \
|
1661
|
+
volatile OrigFn _orig = (orig); \
|
1662
|
+
volatile unsigned long _argvec[13]; \
|
1663
|
+
volatile unsigned long _res; \
|
1664
|
+
_argvec[0] = (unsigned long)_orig.nraddr; \
|
1665
|
+
_argvec[1] = (unsigned long)arg1; \
|
1666
|
+
_argvec[2] = (unsigned long)arg2; \
|
1667
|
+
_argvec[3] = (unsigned long)arg3; \
|
1668
|
+
_argvec[4] = (unsigned long)arg4; \
|
1669
|
+
_argvec[5] = (unsigned long)arg5; \
|
1670
|
+
_argvec[6] = (unsigned long)arg6; \
|
1671
|
+
_argvec[7] = (unsigned long)arg7; \
|
1672
|
+
_argvec[8] = (unsigned long)arg8; \
|
1673
|
+
_argvec[9] = (unsigned long)arg9; \
|
1674
|
+
_argvec[10] = (unsigned long)arg10; \
|
1675
|
+
_argvec[11] = (unsigned long)arg11; \
|
1676
|
+
_argvec[12] = (unsigned long)arg12; \
|
1677
|
+
__asm__ volatile( \
|
1678
|
+
"mr 11,%1\n\t" \
|
1679
|
+
"addi 1,1,-32\n\t" \
|
1680
|
+
/* arg12 */ \
|
1681
|
+
"lwz 3,48(11)\n\t" \
|
1682
|
+
"stw 3,20(1)\n\t" \
|
1683
|
+
/* arg11 */ \
|
1684
|
+
"lwz 3,44(11)\n\t" \
|
1685
|
+
"stw 3,16(1)\n\t" \
|
1686
|
+
/* arg10 */ \
|
1687
|
+
"lwz 3,40(11)\n\t" \
|
1688
|
+
"stw 3,12(1)\n\t" \
|
1689
|
+
/* arg9 */ \
|
1690
|
+
"lwz 3,36(11)\n\t" \
|
1691
|
+
"stw 3,8(1)\n\t" \
|
1692
|
+
/* args1-8 */ \
|
1693
|
+
"lwz 3,4(11)\n\t" /* arg1->r3 */ \
|
1694
|
+
"lwz 4,8(11)\n\t" \
|
1695
|
+
"lwz 5,12(11)\n\t" \
|
1696
|
+
"lwz 6,16(11)\n\t" /* arg4->r6 */ \
|
1697
|
+
"lwz 7,20(11)\n\t" \
|
1698
|
+
"lwz 8,24(11)\n\t" \
|
1699
|
+
"lwz 9,28(11)\n\t" \
|
1700
|
+
"lwz 10,32(11)\n\t" /* arg8->r10 */ \
|
1701
|
+
"lwz 11,0(11)\n\t" /* target->r11 */ \
|
1702
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1703
|
+
"addi 1,1,32\n\t" \
|
1704
|
+
"mr %0,3" \
|
1705
|
+
: /*out*/ "=r" (_res) \
|
1706
|
+
: /*in*/ "r" (&_argvec[0]) \
|
1707
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1708
|
+
); \
|
1709
|
+
lval = (__typeof__(lval)) _res; \
|
1710
|
+
} while (0)
|
1711
|
+
|
1712
|
+
#endif /* ARCH_ppc32 */
|
1713
|
+
|
1714
|
+
/* --------------------------- ppc64 --------------------------- */
|
1715
|
+
|
1716
|
+
#if defined(ARCH_ppc64)
|
1717
|
+
|
1718
|
+
/* ARGREGS: r3 r4 r5 r6 r7 r8 r9 r10 (the rest on stack somewhere) */
|
1719
|
+
|
1720
|
+
/* These regs are trashed by the hidden call. */
|
1721
|
+
#define __CALLER_SAVED_REGS \
|
1722
|
+
"lr", "ctr", "xer", \
|
1723
|
+
"cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7", \
|
1724
|
+
"r0", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \
|
1725
|
+
"r11", "r12", "r13"
|
1726
|
+
|
1727
|
+
/* These CALL_FN_ macros assume that on ppc64-linux, sizeof(unsigned
|
1728
|
+
long) == 8. */
|
1729
|
+
|
1730
|
+
#define CALL_FN_W_v(lval, orig) \
|
1731
|
+
do { \
|
1732
|
+
volatile OrigFn _orig = (orig); \
|
1733
|
+
volatile unsigned long _argvec[3+0]; \
|
1734
|
+
volatile unsigned long _res; \
|
1735
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1736
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1737
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1738
|
+
__asm__ volatile( \
|
1739
|
+
"mr 11,%1\n\t" \
|
1740
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1741
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1742
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1743
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1744
|
+
"mr 11,%1\n\t" \
|
1745
|
+
"mr %0,3\n\t" \
|
1746
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1747
|
+
: /*out*/ "=r" (_res) \
|
1748
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1749
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1750
|
+
); \
|
1751
|
+
lval = (__typeof__(lval)) _res; \
|
1752
|
+
} while (0)
|
1753
|
+
|
1754
|
+
#define CALL_FN_W_W(lval, orig, arg1) \
|
1755
|
+
do { \
|
1756
|
+
volatile OrigFn _orig = (orig); \
|
1757
|
+
volatile unsigned long _argvec[3+1]; \
|
1758
|
+
volatile unsigned long _res; \
|
1759
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1760
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1761
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1762
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1763
|
+
__asm__ volatile( \
|
1764
|
+
"mr 11,%1\n\t" \
|
1765
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1766
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1767
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1768
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1769
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1770
|
+
"mr 11,%1\n\t" \
|
1771
|
+
"mr %0,3\n\t" \
|
1772
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1773
|
+
: /*out*/ "=r" (_res) \
|
1774
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1775
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1776
|
+
); \
|
1777
|
+
lval = (__typeof__(lval)) _res; \
|
1778
|
+
} while (0)
|
1779
|
+
|
1780
|
+
#define CALL_FN_W_WW(lval, orig, arg1,arg2) \
|
1781
|
+
do { \
|
1782
|
+
volatile OrigFn _orig = (orig); \
|
1783
|
+
volatile unsigned long _argvec[3+2]; \
|
1784
|
+
volatile unsigned long _res; \
|
1785
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1786
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1787
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1788
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1789
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1790
|
+
__asm__ volatile( \
|
1791
|
+
"mr 11,%1\n\t" \
|
1792
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1793
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1794
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1795
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1796
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1797
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1798
|
+
"mr 11,%1\n\t" \
|
1799
|
+
"mr %0,3\n\t" \
|
1800
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1801
|
+
: /*out*/ "=r" (_res) \
|
1802
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1803
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1804
|
+
); \
|
1805
|
+
lval = (__typeof__(lval)) _res; \
|
1806
|
+
} while (0)
|
1807
|
+
|
1808
|
+
#define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
|
1809
|
+
do { \
|
1810
|
+
volatile OrigFn _orig = (orig); \
|
1811
|
+
volatile unsigned long _argvec[3+3]; \
|
1812
|
+
volatile unsigned long _res; \
|
1813
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1814
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1815
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1816
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1817
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1818
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1819
|
+
__asm__ volatile( \
|
1820
|
+
"mr 11,%1\n\t" \
|
1821
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1822
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1823
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1824
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1825
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
1826
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1827
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1828
|
+
"mr 11,%1\n\t" \
|
1829
|
+
"mr %0,3\n\t" \
|
1830
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1831
|
+
: /*out*/ "=r" (_res) \
|
1832
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1833
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1834
|
+
); \
|
1835
|
+
lval = (__typeof__(lval)) _res; \
|
1836
|
+
} while (0)
|
1837
|
+
|
1838
|
+
#define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
|
1839
|
+
do { \
|
1840
|
+
volatile OrigFn _orig = (orig); \
|
1841
|
+
volatile unsigned long _argvec[3+4]; \
|
1842
|
+
volatile unsigned long _res; \
|
1843
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1844
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1845
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1846
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1847
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1848
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1849
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
1850
|
+
__asm__ volatile( \
|
1851
|
+
"mr 11,%1\n\t" \
|
1852
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1853
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1854
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1855
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1856
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
1857
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
1858
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1859
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1860
|
+
"mr 11,%1\n\t" \
|
1861
|
+
"mr %0,3\n\t" \
|
1862
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1863
|
+
: /*out*/ "=r" (_res) \
|
1864
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1865
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1866
|
+
); \
|
1867
|
+
lval = (__typeof__(lval)) _res; \
|
1868
|
+
} while (0)
|
1869
|
+
|
1870
|
+
#define CALL_FN_W_5W(lval, orig, arg1,arg2,arg3,arg4,arg5) \
|
1871
|
+
do { \
|
1872
|
+
volatile OrigFn _orig = (orig); \
|
1873
|
+
volatile unsigned long _argvec[3+5]; \
|
1874
|
+
volatile unsigned long _res; \
|
1875
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1876
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1877
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1878
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1879
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1880
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1881
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
1882
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
1883
|
+
__asm__ volatile( \
|
1884
|
+
"mr 11,%1\n\t" \
|
1885
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1886
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1887
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1888
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1889
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
1890
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
1891
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
1892
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1893
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1894
|
+
"mr 11,%1\n\t" \
|
1895
|
+
"mr %0,3\n\t" \
|
1896
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1897
|
+
: /*out*/ "=r" (_res) \
|
1898
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1899
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1900
|
+
); \
|
1901
|
+
lval = (__typeof__(lval)) _res; \
|
1902
|
+
} while (0)
|
1903
|
+
|
1904
|
+
#define CALL_FN_W_6W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6) \
|
1905
|
+
do { \
|
1906
|
+
volatile OrigFn _orig = (orig); \
|
1907
|
+
volatile unsigned long _argvec[3+6]; \
|
1908
|
+
volatile unsigned long _res; \
|
1909
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1910
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1911
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1912
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1913
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1914
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1915
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
1916
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
1917
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
1918
|
+
__asm__ volatile( \
|
1919
|
+
"mr 11,%1\n\t" \
|
1920
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1921
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1922
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1923
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1924
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
1925
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
1926
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
1927
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
1928
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1929
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1930
|
+
"mr 11,%1\n\t" \
|
1931
|
+
"mr %0,3\n\t" \
|
1932
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1933
|
+
: /*out*/ "=r" (_res) \
|
1934
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1935
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1936
|
+
); \
|
1937
|
+
lval = (__typeof__(lval)) _res; \
|
1938
|
+
} while (0)
|
1939
|
+
|
1940
|
+
#define CALL_FN_W_7W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1941
|
+
arg7) \
|
1942
|
+
do { \
|
1943
|
+
volatile OrigFn _orig = (orig); \
|
1944
|
+
volatile unsigned long _argvec[3+7]; \
|
1945
|
+
volatile unsigned long _res; \
|
1946
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1947
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1948
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1949
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1950
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1951
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1952
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
1953
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
1954
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
1955
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
1956
|
+
__asm__ volatile( \
|
1957
|
+
"mr 11,%1\n\t" \
|
1958
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1959
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
1960
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
1961
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
1962
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
1963
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
1964
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
1965
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
1966
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
1967
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
1968
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
1969
|
+
"mr 11,%1\n\t" \
|
1970
|
+
"mr %0,3\n\t" \
|
1971
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
1972
|
+
: /*out*/ "=r" (_res) \
|
1973
|
+
: /*in*/ "r" (&_argvec[2]) \
|
1974
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
1975
|
+
); \
|
1976
|
+
lval = (__typeof__(lval)) _res; \
|
1977
|
+
} while (0)
|
1978
|
+
|
1979
|
+
#define CALL_FN_W_8W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
1980
|
+
arg7,arg8) \
|
1981
|
+
do { \
|
1982
|
+
volatile OrigFn _orig = (orig); \
|
1983
|
+
volatile unsigned long _argvec[3+8]; \
|
1984
|
+
volatile unsigned long _res; \
|
1985
|
+
/* _argvec[0] holds current r2 across the call */ \
|
1986
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
1987
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
1988
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
1989
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
1990
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
1991
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
1992
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
1993
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
1994
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
1995
|
+
_argvec[2+8] = (unsigned long)arg8; \
|
1996
|
+
__asm__ volatile( \
|
1997
|
+
"mr 11,%1\n\t" \
|
1998
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
1999
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
2000
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
2001
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
2002
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
2003
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
2004
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
2005
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
2006
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
2007
|
+
"ld 10, 64(11)\n\t" /* arg8->r10 */ \
|
2008
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
2009
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
2010
|
+
"mr 11,%1\n\t" \
|
2011
|
+
"mr %0,3\n\t" \
|
2012
|
+
"ld 2,-16(11)" /* restore tocptr */ \
|
2013
|
+
: /*out*/ "=r" (_res) \
|
2014
|
+
: /*in*/ "r" (&_argvec[2]) \
|
2015
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
2016
|
+
); \
|
2017
|
+
lval = (__typeof__(lval)) _res; \
|
2018
|
+
} while (0)
|
2019
|
+
|
2020
|
+
#define CALL_FN_W_9W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
2021
|
+
arg7,arg8,arg9) \
|
2022
|
+
do { \
|
2023
|
+
volatile OrigFn _orig = (orig); \
|
2024
|
+
volatile unsigned long _argvec[3+9]; \
|
2025
|
+
volatile unsigned long _res; \
|
2026
|
+
/* _argvec[0] holds current r2 across the call */ \
|
2027
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
2028
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
2029
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
2030
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
2031
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
2032
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
2033
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
2034
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
2035
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
2036
|
+
_argvec[2+8] = (unsigned long)arg8; \
|
2037
|
+
_argvec[2+9] = (unsigned long)arg9; \
|
2038
|
+
__asm__ volatile( \
|
2039
|
+
"mr 11,%1\n\t" \
|
2040
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
2041
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
2042
|
+
"addi 1,1,-128\n\t" /* expand stack frame */ \
|
2043
|
+
/* arg9 */ \
|
2044
|
+
"ld 3,72(11)\n\t" \
|
2045
|
+
"std 3,112(1)\n\t" \
|
2046
|
+
/* args1-8 */ \
|
2047
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
2048
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
2049
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
2050
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
2051
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
2052
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
2053
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
2054
|
+
"ld 10, 64(11)\n\t" /* arg8->r10 */ \
|
2055
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
2056
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
2057
|
+
"mr 11,%1\n\t" \
|
2058
|
+
"mr %0,3\n\t" \
|
2059
|
+
"ld 2,-16(11)\n\t" /* restore tocptr */ \
|
2060
|
+
"addi 1,1,128" /* restore frame */ \
|
2061
|
+
: /*out*/ "=r" (_res) \
|
2062
|
+
: /*in*/ "r" (&_argvec[2]) \
|
2063
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
2064
|
+
); \
|
2065
|
+
lval = (__typeof__(lval)) _res; \
|
2066
|
+
} while (0)
|
2067
|
+
|
2068
|
+
#define CALL_FN_W_10W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
2069
|
+
arg7,arg8,arg9,arg10) \
|
2070
|
+
do { \
|
2071
|
+
volatile OrigFn _orig = (orig); \
|
2072
|
+
volatile unsigned long _argvec[3+10]; \
|
2073
|
+
volatile unsigned long _res; \
|
2074
|
+
/* _argvec[0] holds current r2 across the call */ \
|
2075
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
2076
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
2077
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
2078
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
2079
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
2080
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
2081
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
2082
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
2083
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
2084
|
+
_argvec[2+8] = (unsigned long)arg8; \
|
2085
|
+
_argvec[2+9] = (unsigned long)arg9; \
|
2086
|
+
_argvec[2+10] = (unsigned long)arg10; \
|
2087
|
+
__asm__ volatile( \
|
2088
|
+
"mr 11,%1\n\t" \
|
2089
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
2090
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
2091
|
+
"addi 1,1,-128\n\t" /* expand stack frame */ \
|
2092
|
+
/* arg10 */ \
|
2093
|
+
"ld 3,80(11)\n\t" \
|
2094
|
+
"std 3,120(1)\n\t" \
|
2095
|
+
/* arg9 */ \
|
2096
|
+
"ld 3,72(11)\n\t" \
|
2097
|
+
"std 3,112(1)\n\t" \
|
2098
|
+
/* args1-8 */ \
|
2099
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
2100
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
2101
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
2102
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
2103
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
2104
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
2105
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
2106
|
+
"ld 10, 64(11)\n\t" /* arg8->r10 */ \
|
2107
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
2108
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
2109
|
+
"mr 11,%1\n\t" \
|
2110
|
+
"mr %0,3\n\t" \
|
2111
|
+
"ld 2,-16(11)\n\t" /* restore tocptr */ \
|
2112
|
+
"addi 1,1,128" /* restore frame */ \
|
2113
|
+
: /*out*/ "=r" (_res) \
|
2114
|
+
: /*in*/ "r" (&_argvec[2]) \
|
2115
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
2116
|
+
); \
|
2117
|
+
lval = (__typeof__(lval)) _res; \
|
2118
|
+
} while (0)
|
2119
|
+
|
2120
|
+
#define CALL_FN_W_11W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
2121
|
+
arg7,arg8,arg9,arg10,arg11) \
|
2122
|
+
do { \
|
2123
|
+
volatile OrigFn _orig = (orig); \
|
2124
|
+
volatile unsigned long _argvec[3+11]; \
|
2125
|
+
volatile unsigned long _res; \
|
2126
|
+
/* _argvec[0] holds current r2 across the call */ \
|
2127
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
2128
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
2129
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
2130
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
2131
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
2132
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
2133
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
2134
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
2135
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
2136
|
+
_argvec[2+8] = (unsigned long)arg8; \
|
2137
|
+
_argvec[2+9] = (unsigned long)arg9; \
|
2138
|
+
_argvec[2+10] = (unsigned long)arg10; \
|
2139
|
+
_argvec[2+11] = (unsigned long)arg11; \
|
2140
|
+
__asm__ volatile( \
|
2141
|
+
"mr 11,%1\n\t" \
|
2142
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
2143
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
2144
|
+
"addi 1,1,-144\n\t" /* expand stack frame */ \
|
2145
|
+
/* arg11 */ \
|
2146
|
+
"ld 3,88(11)\n\t" \
|
2147
|
+
"std 3,128(1)\n\t" \
|
2148
|
+
/* arg10 */ \
|
2149
|
+
"ld 3,80(11)\n\t" \
|
2150
|
+
"std 3,120(1)\n\t" \
|
2151
|
+
/* arg9 */ \
|
2152
|
+
"ld 3,72(11)\n\t" \
|
2153
|
+
"std 3,112(1)\n\t" \
|
2154
|
+
/* args1-8 */ \
|
2155
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
2156
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
2157
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
2158
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
2159
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
2160
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
2161
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
2162
|
+
"ld 10, 64(11)\n\t" /* arg8->r10 */ \
|
2163
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
2164
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
2165
|
+
"mr 11,%1\n\t" \
|
2166
|
+
"mr %0,3\n\t" \
|
2167
|
+
"ld 2,-16(11)\n\t" /* restore tocptr */ \
|
2168
|
+
"addi 1,1,144" /* restore frame */ \
|
2169
|
+
: /*out*/ "=r" (_res) \
|
2170
|
+
: /*in*/ "r" (&_argvec[2]) \
|
2171
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
2172
|
+
); \
|
2173
|
+
lval = (__typeof__(lval)) _res; \
|
2174
|
+
} while (0)
|
2175
|
+
|
2176
|
+
#define CALL_FN_W_12W(lval, orig, arg1,arg2,arg3,arg4,arg5,arg6, \
|
2177
|
+
arg7,arg8,arg9,arg10,arg11,arg12) \
|
2178
|
+
do { \
|
2179
|
+
volatile OrigFn _orig = (orig); \
|
2180
|
+
volatile unsigned long _argvec[3+12]; \
|
2181
|
+
volatile unsigned long _res; \
|
2182
|
+
/* _argvec[0] holds current r2 across the call */ \
|
2183
|
+
_argvec[1] = (unsigned long)_orig.r2; \
|
2184
|
+
_argvec[2] = (unsigned long)_orig.nraddr; \
|
2185
|
+
_argvec[2+1] = (unsigned long)arg1; \
|
2186
|
+
_argvec[2+2] = (unsigned long)arg2; \
|
2187
|
+
_argvec[2+3] = (unsigned long)arg3; \
|
2188
|
+
_argvec[2+4] = (unsigned long)arg4; \
|
2189
|
+
_argvec[2+5] = (unsigned long)arg5; \
|
2190
|
+
_argvec[2+6] = (unsigned long)arg6; \
|
2191
|
+
_argvec[2+7] = (unsigned long)arg7; \
|
2192
|
+
_argvec[2+8] = (unsigned long)arg8; \
|
2193
|
+
_argvec[2+9] = (unsigned long)arg9; \
|
2194
|
+
_argvec[2+10] = (unsigned long)arg10; \
|
2195
|
+
_argvec[2+11] = (unsigned long)arg11; \
|
2196
|
+
_argvec[2+12] = (unsigned long)arg12; \
|
2197
|
+
__asm__ volatile( \
|
2198
|
+
"mr 11,%1\n\t" \
|
2199
|
+
"std 2,-16(11)\n\t" /* save tocptr */ \
|
2200
|
+
"ld 2,-8(11)\n\t" /* use nraddr's tocptr */ \
|
2201
|
+
"addi 1,1,-144\n\t" /* expand stack frame */ \
|
2202
|
+
/* arg12 */ \
|
2203
|
+
"ld 3,96(11)\n\t" \
|
2204
|
+
"std 3,136(1)\n\t" \
|
2205
|
+
/* arg11 */ \
|
2206
|
+
"ld 3,88(11)\n\t" \
|
2207
|
+
"std 3,128(1)\n\t" \
|
2208
|
+
/* arg10 */ \
|
2209
|
+
"ld 3,80(11)\n\t" \
|
2210
|
+
"std 3,120(1)\n\t" \
|
2211
|
+
/* arg9 */ \
|
2212
|
+
"ld 3,72(11)\n\t" \
|
2213
|
+
"std 3,112(1)\n\t" \
|
2214
|
+
/* args1-8 */ \
|
2215
|
+
"ld 3, 8(11)\n\t" /* arg1->r3 */ \
|
2216
|
+
"ld 4, 16(11)\n\t" /* arg2->r4 */ \
|
2217
|
+
"ld 5, 24(11)\n\t" /* arg3->r5 */ \
|
2218
|
+
"ld 6, 32(11)\n\t" /* arg4->r6 */ \
|
2219
|
+
"ld 7, 40(11)\n\t" /* arg5->r7 */ \
|
2220
|
+
"ld 8, 48(11)\n\t" /* arg6->r8 */ \
|
2221
|
+
"ld 9, 56(11)\n\t" /* arg7->r9 */ \
|
2222
|
+
"ld 10, 64(11)\n\t" /* arg8->r10 */ \
|
2223
|
+
"ld 11, 0(11)\n\t" /* target->r11 */ \
|
2224
|
+
VALGRIND_BRANCH_AND_LINK_TO_NOREDIR_R11 \
|
2225
|
+
"mr 11,%1\n\t" \
|
2226
|
+
"mr %0,3\n\t" \
|
2227
|
+
"ld 2,-16(11)\n\t" /* restore tocptr */ \
|
2228
|
+
"addi 1,1,144" /* restore frame */ \
|
2229
|
+
: /*out*/ "=r" (_res) \
|
2230
|
+
: /*in*/ "r" (&_argvec[2]) \
|
2231
|
+
: /*trash*/ "cc", "memory", __CALLER_SAVED_REGS \
|
2232
|
+
); \
|
2233
|
+
lval = (__typeof__(lval)) _res; \
|
2234
|
+
} while (0)
|
2235
|
+
|
2236
|
+
#endif /* ARCH_ppc64 */
|
2237
|
+
|
2238
|
+
|
2239
|
+
/* ------------------------------------------------------------------ */
|
2240
|
+
/* ARCHITECTURE INDEPENDENT MACROS for CLIENT REQUESTS. */
|
2241
|
+
/* */
|
2242
|
+
/* ------------------------------------------------------------------ */
|
2243
|
+
|
2244
|
+
/* Some request codes. There are many more of these, but most are not
|
2245
|
+
exposed to end-user view. These are the public ones, all of the
|
2246
|
+
form 0x1000 + small_number.
|
2247
|
+
|
2248
|
+
Core ones are in the range 0x00000000--0x0000ffff. The non-public
|
2249
|
+
ones start at 0x2000.
|
2250
|
+
*/
|
2251
|
+
|
2252
|
+
/* These macros are used by tools -- they must be public, but don't
|
2253
|
+
embed them into other programs. */
|
2254
|
+
#define VG_USERREQ_TOOL_BASE(a,b) \
|
2255
|
+
((unsigned int)(((a)&0xff) << 24 | ((b)&0xff) << 16))
|
2256
|
+
#define VG_IS_TOOL_USERREQ(a, b, v) \
|
2257
|
+
(VG_USERREQ_TOOL_BASE(a,b) == ((v) & 0xffff0000))
|
2258
|
+
|
2259
|
+
/* !! ABIWARNING !! ABIWARNING !! ABIWARNING !! ABIWARNING !!
|
2260
|
+
This enum comprises an ABI exported by Valgrind to programs
|
2261
|
+
which use client requests. DO NOT CHANGE THE ORDER OF THESE
|
2262
|
+
ENTRIES, NOR DELETE ANY -- add new ones at the end. */
|
2263
|
+
typedef
|
2264
|
+
enum { VG_USERREQ__RUNNING_ON_VALGRIND = 0x1001,
|
2265
|
+
VG_USERREQ__DISCARD_TRANSLATIONS = 0x1002,
|
2266
|
+
|
2267
|
+
/* These allow any function to be called from the simulated
|
2268
|
+
CPU but run on the real CPU. Nb: the first arg passed to
|
2269
|
+
the function is always the ThreadId of the running
|
2270
|
+
thread! So CLIENT_CALL0 actually requires a 1 arg
|
2271
|
+
function, etc. */
|
2272
|
+
VG_USERREQ__CLIENT_CALL0 = 0x1101,
|
2273
|
+
VG_USERREQ__CLIENT_CALL1 = 0x1102,
|
2274
|
+
VG_USERREQ__CLIENT_CALL2 = 0x1103,
|
2275
|
+
VG_USERREQ__CLIENT_CALL3 = 0x1104,
|
2276
|
+
|
2277
|
+
/* Can be useful in regression testing suites -- eg. can
|
2278
|
+
send Valgrind's output to /dev/null and still count
|
2279
|
+
errors. */
|
2280
|
+
VG_USERREQ__COUNT_ERRORS = 0x1201,
|
2281
|
+
|
2282
|
+
/* These are useful and can be interpreted by any tool that
|
2283
|
+
tracks malloc() et al, by using vg_replace_malloc.c. */
|
2284
|
+
VG_USERREQ__MALLOCLIKE_BLOCK = 0x1301,
|
2285
|
+
VG_USERREQ__FREELIKE_BLOCK = 0x1302,
|
2286
|
+
/* Memory pool support. */
|
2287
|
+
VG_USERREQ__CREATE_MEMPOOL = 0x1303,
|
2288
|
+
VG_USERREQ__DESTROY_MEMPOOL = 0x1304,
|
2289
|
+
VG_USERREQ__MEMPOOL_ALLOC = 0x1305,
|
2290
|
+
VG_USERREQ__MEMPOOL_FREE = 0x1306,
|
2291
|
+
|
2292
|
+
/* Allow printfs to valgrind log. */
|
2293
|
+
VG_USERREQ__PRINTF = 0x1401,
|
2294
|
+
VG_USERREQ__PRINTF_BACKTRACE = 0x1402,
|
2295
|
+
|
2296
|
+
/* Stack support. */
|
2297
|
+
VG_USERREQ__STACK_REGISTER = 0x1501,
|
2298
|
+
VG_USERREQ__STACK_DEREGISTER = 0x1502,
|
2299
|
+
VG_USERREQ__STACK_CHANGE = 0x1503
|
2300
|
+
} Vg_ClientRequest;
|
2301
|
+
|
2302
|
+
#if !defined(__GNUC__)
|
2303
|
+
# define __extension__ /* */
|
2304
|
+
#endif
|
2305
|
+
|
2306
|
+
/* Returns the number of Valgrinds this code is running under. That
|
2307
|
+
is, 0 if running natively, 1 if running under Valgrind, 2 if
|
2308
|
+
running under Valgrind which is running under another Valgrind,
|
2309
|
+
etc. */
|
2310
|
+
#define RUNNING_ON_VALGRIND __extension__ \
|
2311
|
+
({unsigned int _qzz_res; \
|
2312
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* if not */, \
|
2313
|
+
VG_USERREQ__RUNNING_ON_VALGRIND, \
|
2314
|
+
0, 0, 0, 0, 0); \
|
2315
|
+
_qzz_res; \
|
2316
|
+
})
|
2317
|
+
|
2318
|
+
|
2319
|
+
/* Discard translation of code in the range [_qzz_addr .. _qzz_addr +
|
2320
|
+
_qzz_len - 1]. Useful if you are debugging a JITter or some such,
|
2321
|
+
since it provides a way to make sure valgrind will retranslate the
|
2322
|
+
invalidated area. Returns no value. */
|
2323
|
+
#define VALGRIND_DISCARD_TRANSLATIONS(_qzz_addr,_qzz_len) \
|
2324
|
+
{unsigned int _qzz_res; \
|
2325
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2326
|
+
VG_USERREQ__DISCARD_TRANSLATIONS, \
|
2327
|
+
_qzz_addr, _qzz_len, 0, 0, 0); \
|
2328
|
+
}
|
2329
|
+
|
2330
|
+
|
2331
|
+
/* These requests are for getting Valgrind itself to print something.
|
2332
|
+
Possibly with a backtrace. This is a really ugly hack. */
|
2333
|
+
|
2334
|
+
#if defined(NVALGRIND)
|
2335
|
+
|
2336
|
+
# define VALGRIND_PRINTF(...)
|
2337
|
+
# define VALGRIND_PRINTF_BACKTRACE(...)
|
2338
|
+
|
2339
|
+
#else /* NVALGRIND */
|
2340
|
+
|
2341
|
+
/* Modern GCC will optimize the static routine out if unused,
|
2342
|
+
and unused attribute will shut down warnings about it. */
|
2343
|
+
static int VALGRIND_PRINTF(const char *format, ...)
|
2344
|
+
__attribute__((format(__printf__, 1, 2), __unused__));
|
2345
|
+
static int
|
2346
|
+
VALGRIND_PRINTF(const char *format, ...)
|
2347
|
+
{
|
2348
|
+
unsigned long _qzz_res;
|
2349
|
+
va_list vargs;
|
2350
|
+
va_start(vargs, format);
|
2351
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, VG_USERREQ__PRINTF,
|
2352
|
+
(unsigned long)format, (unsigned long)vargs,
|
2353
|
+
0, 0, 0);
|
2354
|
+
va_end(vargs);
|
2355
|
+
return (int)_qzz_res;
|
2356
|
+
}
|
2357
|
+
|
2358
|
+
static int VALGRIND_PRINTF_BACKTRACE(const char *format, ...)
|
2359
|
+
__attribute__((format(__printf__, 1, 2), __unused__));
|
2360
|
+
static int
|
2361
|
+
VALGRIND_PRINTF_BACKTRACE(const char *format, ...)
|
2362
|
+
{
|
2363
|
+
unsigned long _qzz_res;
|
2364
|
+
va_list vargs;
|
2365
|
+
va_start(vargs, format);
|
2366
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, VG_USERREQ__PRINTF_BACKTRACE,
|
2367
|
+
(unsigned long)format, (unsigned long)vargs,
|
2368
|
+
0, 0, 0);
|
2369
|
+
va_end(vargs);
|
2370
|
+
return (int)_qzz_res;
|
2371
|
+
}
|
2372
|
+
|
2373
|
+
#endif /* NVALGRIND */
|
2374
|
+
|
2375
|
+
|
2376
|
+
/* These requests allow control to move from the simulated CPU to the
|
2377
|
+
real CPU, calling an arbitary function */
|
2378
|
+
#define VALGRIND_NON_SIMD_CALL0(_qyy_fn) \
|
2379
|
+
__extension__ \
|
2380
|
+
({unsigned long _qyy_res; \
|
2381
|
+
VALGRIND_DO_CLIENT_REQUEST(_qyy_res, 0 /* default return */, \
|
2382
|
+
VG_USERREQ__CLIENT_CALL0, \
|
2383
|
+
_qyy_fn, \
|
2384
|
+
0, 0, 0, 0); \
|
2385
|
+
_qyy_res; \
|
2386
|
+
})
|
2387
|
+
|
2388
|
+
#define VALGRIND_NON_SIMD_CALL1(_qyy_fn, _qyy_arg1) \
|
2389
|
+
__extension__ \
|
2390
|
+
({unsigned long _qyy_res; \
|
2391
|
+
VALGRIND_DO_CLIENT_REQUEST(_qyy_res, 0 /* default return */, \
|
2392
|
+
VG_USERREQ__CLIENT_CALL1, \
|
2393
|
+
_qyy_fn, \
|
2394
|
+
_qyy_arg1, 0, 0, 0); \
|
2395
|
+
_qyy_res; \
|
2396
|
+
})
|
2397
|
+
|
2398
|
+
#define VALGRIND_NON_SIMD_CALL2(_qyy_fn, _qyy_arg1, _qyy_arg2) \
|
2399
|
+
__extension__ \
|
2400
|
+
({unsigned long _qyy_res; \
|
2401
|
+
VALGRIND_DO_CLIENT_REQUEST(_qyy_res, 0 /* default return */, \
|
2402
|
+
VG_USERREQ__CLIENT_CALL2, \
|
2403
|
+
_qyy_fn, \
|
2404
|
+
_qyy_arg1, _qyy_arg2, 0, 0); \
|
2405
|
+
_qyy_res; \
|
2406
|
+
})
|
2407
|
+
|
2408
|
+
#define VALGRIND_NON_SIMD_CALL3(_qyy_fn, _qyy_arg1, _qyy_arg2, _qyy_arg3) \
|
2409
|
+
__extension__ \
|
2410
|
+
({unsigned long _qyy_res; \
|
2411
|
+
VALGRIND_DO_CLIENT_REQUEST(_qyy_res, 0 /* default return */, \
|
2412
|
+
VG_USERREQ__CLIENT_CALL3, \
|
2413
|
+
_qyy_fn, \
|
2414
|
+
_qyy_arg1, _qyy_arg2, \
|
2415
|
+
_qyy_arg3, 0); \
|
2416
|
+
_qyy_res; \
|
2417
|
+
})
|
2418
|
+
|
2419
|
+
|
2420
|
+
/* Counts the number of errors that have been recorded by a tool. Nb:
|
2421
|
+
the tool must record the errors with VG_(maybe_record_error)() or
|
2422
|
+
VG_(unique_error)() for them to be counted. */
|
2423
|
+
#define VALGRIND_COUNT_ERRORS \
|
2424
|
+
__extension__ \
|
2425
|
+
({unsigned int _qyy_res; \
|
2426
|
+
VALGRIND_DO_CLIENT_REQUEST(_qyy_res, 0 /* default return */, \
|
2427
|
+
VG_USERREQ__COUNT_ERRORS, \
|
2428
|
+
0, 0, 0, 0, 0); \
|
2429
|
+
_qyy_res; \
|
2430
|
+
})
|
2431
|
+
|
2432
|
+
/* Mark a block of memory as having been allocated by a malloc()-like
|
2433
|
+
function. `addr' is the start of the usable block (ie. after any
|
2434
|
+
redzone) `rzB' is redzone size if the allocator can apply redzones;
|
2435
|
+
use '0' if not. Adding redzones makes it more likely Valgrind will spot
|
2436
|
+
block overruns. `is_zeroed' indicates if the memory is zeroed, as it is
|
2437
|
+
for calloc(). Put it immediately after the point where a block is
|
2438
|
+
allocated.
|
2439
|
+
|
2440
|
+
If you're allocating memory via superblocks, and then handing out small
|
2441
|
+
chunks of each superblock, if you don't have redzones on your small
|
2442
|
+
blocks, it's worth marking the superblock with VALGRIND_MAKE_MEM_NOACCESS
|
2443
|
+
when it's created, so that block overruns are detected. But if you can
|
2444
|
+
put redzones on, it's probably better to not do this, so that messages
|
2445
|
+
for small overruns are described in terms of the small block rather than
|
2446
|
+
the superblock (but if you have a big overrun that skips over a redzone,
|
2447
|
+
you could miss an error this way). See memcheck/tests/custom_alloc.c
|
2448
|
+
for an example.
|
2449
|
+
|
2450
|
+
WARNING: if your allocator uses malloc() or 'new' to allocate
|
2451
|
+
superblocks, rather than mmap() or brk(), this will not work properly --
|
2452
|
+
you'll likely get assertion failures during leak detection. This is
|
2453
|
+
because Valgrind doesn't like seeing overlapping heap blocks. Sorry.
|
2454
|
+
|
2455
|
+
Nb: block must be freed via a free()-like function specified
|
2456
|
+
with VALGRIND_FREELIKE_BLOCK or mismatch errors will occur. */
|
2457
|
+
#define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \
|
2458
|
+
{unsigned int _qzz_res; \
|
2459
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2460
|
+
VG_USERREQ__MALLOCLIKE_BLOCK, \
|
2461
|
+
addr, sizeB, rzB, is_zeroed, 0); \
|
2462
|
+
}
|
2463
|
+
|
2464
|
+
/* Mark a block of memory as having been freed by a free()-like function.
|
2465
|
+
`rzB' is redzone size; it must match that given to
|
2466
|
+
VALGRIND_MALLOCLIKE_BLOCK. Memory not freed will be detected by the leak
|
2467
|
+
checker. Put it immediately after the point where the block is freed. */
|
2468
|
+
#define VALGRIND_FREELIKE_BLOCK(addr, rzB) \
|
2469
|
+
{unsigned int _qzz_res; \
|
2470
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2471
|
+
VG_USERREQ__FREELIKE_BLOCK, \
|
2472
|
+
addr, rzB, 0, 0, 0); \
|
2473
|
+
}
|
2474
|
+
|
2475
|
+
/* Create a memory pool. */
|
2476
|
+
#define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \
|
2477
|
+
{unsigned int _qzz_res; \
|
2478
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2479
|
+
VG_USERREQ__CREATE_MEMPOOL, \
|
2480
|
+
pool, rzB, is_zeroed, 0, 0); \
|
2481
|
+
}
|
2482
|
+
|
2483
|
+
/* Destroy a memory pool. */
|
2484
|
+
#define VALGRIND_DESTROY_MEMPOOL(pool) \
|
2485
|
+
{unsigned int _qzz_res; \
|
2486
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2487
|
+
VG_USERREQ__DESTROY_MEMPOOL, \
|
2488
|
+
pool, 0, 0, 0, 0); \
|
2489
|
+
}
|
2490
|
+
|
2491
|
+
/* Associate a piece of memory with a memory pool. */
|
2492
|
+
#define VALGRIND_MEMPOOL_ALLOC(pool, addr, size) \
|
2493
|
+
{unsigned int _qzz_res; \
|
2494
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2495
|
+
VG_USERREQ__MEMPOOL_ALLOC, \
|
2496
|
+
pool, addr, size, 0, 0); \
|
2497
|
+
}
|
2498
|
+
|
2499
|
+
/* Disassociate a piece of memory from a memory pool. */
|
2500
|
+
#define VALGRIND_MEMPOOL_FREE(pool, addr) \
|
2501
|
+
{unsigned int _qzz_res; \
|
2502
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2503
|
+
VG_USERREQ__MEMPOOL_FREE, \
|
2504
|
+
pool, addr, 0, 0, 0); \
|
2505
|
+
}
|
2506
|
+
|
2507
|
+
/* Mark a piece of memory as being a stack. Returns a stack id. */
|
2508
|
+
#define VALGRIND_STACK_REGISTER(start, end) \
|
2509
|
+
({unsigned int _qzz_res; \
|
2510
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2511
|
+
VG_USERREQ__STACK_REGISTER, \
|
2512
|
+
start, end, 0, 0, 0); \
|
2513
|
+
_qzz_res; \
|
2514
|
+
})
|
2515
|
+
|
2516
|
+
/* Unmark the piece of memory associated with a stack id as being a
|
2517
|
+
stack. */
|
2518
|
+
#define VALGRIND_STACK_DEREGISTER(id) \
|
2519
|
+
{unsigned int _qzz_res; \
|
2520
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2521
|
+
VG_USERREQ__STACK_DEREGISTER, \
|
2522
|
+
id, 0, 0, 0, 0); \
|
2523
|
+
}
|
2524
|
+
|
2525
|
+
/* Change the start and end address of the stack id. */
|
2526
|
+
#define VALGRIND_STACK_CHANGE(id, start, end) \
|
2527
|
+
{unsigned int _qzz_res; \
|
2528
|
+
VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \
|
2529
|
+
VG_USERREQ__STACK_CHANGE, \
|
2530
|
+
id, start, end, 0, 0); \
|
2531
|
+
}
|
2532
|
+
|
2533
|
+
|
2534
|
+
#undef ARCH_x86
|
2535
|
+
#undef ARCH_amd64
|
2536
|
+
#undef ARCH_ppc32
|
2537
|
+
#undef ARCH_ppc64
|
2538
|
+
|
2539
|
+
#endif /* __VALGRIND_H */
|