mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 05:10:23 +00:00
- changed lots of Makefile.am files
- changed configure.in
- changed lots of #include lines for changed file names
- changed lots of file headers n footers for changed file names
- changed vg_regtest to handle new directory structure -- recursively
traverses subdirectories for .vgtest test files
- changed lots of paths in memcheck/ regression test expected outputs
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1090
65 lines
2.0 KiB
ArmAsm
65 lines
2.0 KiB
ArmAsm
##--------------------------------------------------------------------##
|
|
##--- Support routines for the memory checker. ---##
|
|
##--- mc_helpers.S ---##
|
|
##--------------------------------------------------------------------##
|
|
|
|
/*
|
|
This file is part of Valgrind, an x86 protected-mode emulator
|
|
designed for debugging and profiling binaries on x86-Unixes.
|
|
|
|
Copyright (C) 2000-2002 Julian Seward
|
|
jseward@acm.org
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307, USA.
|
|
|
|
The GNU General Public License is contained in the file COPYING.
|
|
*/
|
|
|
|
#include "vg_constants_skin.h"
|
|
|
|
.global SK_(helper_value_check0_fail)
|
|
SK_(helper_value_check0_fail):
|
|
pushal
|
|
call SK_(helperc_value_check0_fail)
|
|
popal
|
|
ret
|
|
|
|
.global SK_(helper_value_check1_fail)
|
|
SK_(helper_value_check1_fail):
|
|
pushal
|
|
call SK_(helperc_value_check1_fail)
|
|
popal
|
|
ret
|
|
|
|
.global SK_(helper_value_check2_fail)
|
|
SK_(helper_value_check2_fail):
|
|
pushal
|
|
call SK_(helperc_value_check2_fail)
|
|
popal
|
|
ret
|
|
|
|
.global SK_(helper_value_check4_fail)
|
|
SK_(helper_value_check4_fail):
|
|
pushal
|
|
call SK_(helperc_value_check4_fail)
|
|
popal
|
|
ret
|
|
|
|
##--------------------------------------------------------------------##
|
|
##--- end mc_helpers.S ---##
|
|
##--------------------------------------------------------------------##
|
|
|