blob: 6900fa70919035890910f34a058fd873c3c5ce89 [file] [log] [blame]
sewardj69933ac2004-12-20 04:12:14 +00001
2/*---------------------------------------------------------------*/
sewardj752f9062010-05-03 21:38:49 +00003/*--- begin ir_match.h ---*/
sewardj69933ac2004-12-20 04:12:14 +00004/*---------------------------------------------------------------*/
5
6/*
sewardj752f9062010-05-03 21:38:49 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
sewardj69933ac2004-12-20 04:12:14 +00009
sewardj89ae8472013-10-18 14:12:58 +000010 Copyright (C) 2004-2013 OpenWorks LLP
sewardj752f9062010-05-03 21:38:49 +000011 info@open-works.net
sewardj69933ac2004-12-20 04:12:14 +000012
sewardj752f9062010-05-03 21:38:49 +000013 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
sewardj69933ac2004-12-20 04:12:14 +000017
sewardj752f9062010-05-03 21:38:49 +000018 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
sewardj7bd6ffe2005-08-03 16:07:36 +000026 02110-1301, USA.
27
sewardj752f9062010-05-03 21:38:49 +000028 The GNU General Public License is contained in the file COPYING.
sewardj69933ac2004-12-20 04:12:14 +000029
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
32 used to endorse or promote products derived from this software
33 without prior written permission.
sewardj69933ac2004-12-20 04:12:14 +000034*/
35
36/* Provides a facility for doing IR tree matching. */
37
sewardjcef7d3e2009-07-02 12:21:59 +000038#ifndef __VEX_IR_MATCH_H
39#define __VEX_IR_MATCH_H
sewardj69933ac2004-12-20 04:12:14 +000040
41#include "libvex_basictypes.h"
42#include "libvex_ir.h"
florian9190bef2014-12-29 21:05:37 +000043#include "main_util.h" // NULL
sewardj69933ac2004-12-20 04:12:14 +000044
45/* Patterns are simply IRExpr* trees, with IRExpr_Binder nodes at the
46 leaves, indicating binding points. Use these magic macros to
47 declare and define patterns. */
48
49#define DECLARE_PATTERN(_patt) \
50 static IRExpr* _patt = NULL
51
52#define DEFINE_PATTERN(_patt,_expr) \
53 do { \
54 if (!(_patt)) { \
sewardjd887b862005-01-17 18:34:34 +000055 vassert(vexGetAllocMode() == VexAllocModeTEMP); \
56 vexSetAllocMode(VexAllocModePERM); \
sewardj69933ac2004-12-20 04:12:14 +000057 _patt = (_expr); \
sewardjd887b862005-01-17 18:34:34 +000058 vexSetAllocMode(VexAllocModeTEMP); \
59 vassert(vexGetAllocMode() == VexAllocModeTEMP); \
sewardj69933ac2004-12-20 04:12:14 +000060 } \
61 } while (0)
62
63
64/* This type returns the result of a match -- it records what
65 the binders got instantiated to. */
66
67#define N_IRMATCH_BINDERS 4
68
69typedef
70 struct {
71 IRExpr* bindee[N_IRMATCH_BINDERS];
72 }
73 MatchInfo;
74
75
76/* The matching function. p is expected to have zero or more
77 IRExpr_Binds in it, numbered 0, 1, 2 ... Returns True if a match
78 succeeded. */
79
80extern
81Bool matchIRExpr ( MatchInfo* mi, IRExpr* p/*attern*/, IRExpr* e/*xpr*/ );
82
83
sewardjcef7d3e2009-07-02 12:21:59 +000084#endif /* ndef __VEX_IR_MATCH_H */
sewardj69933ac2004-12-20 04:12:14 +000085
sewardj69933ac2004-12-20 04:12:14 +000086/*---------------------------------------------------------------*/
sewardjcef7d3e2009-07-02 12:21:59 +000087/*--- end ir_match.h ---*/
sewardj69933ac2004-12-20 04:12:14 +000088/*---------------------------------------------------------------*/