gem5
v21.0.1.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
r
s
t
v
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
base
match.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2019 The Regents of the University of California
3
* Copyright (c) 2004-2005 The Regents of The University of Michigan
4
* All rights reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions are
8
* met: redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer;
10
* redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution;
13
* neither the name of the copyright holders nor the names of its
14
* contributors may be used to endorse or promote products derived from
15
* this software without specific prior written permission.
16
*
17
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
*/
29
30
#include "
base/match.hh
"
31
32
#include "
base/str.hh
"
33
34
ObjectMatch::ObjectMatch
()
35
{
36
}
37
38
ObjectMatch::ObjectMatch
(
const
std::string &expr)
39
{
40
setExpression
(expr);
41
}
42
43
void
44
ObjectMatch::add
(
const
ObjectMatch
&other)
45
{
46
tokens
.insert(
tokens
.end(), other.
tokens
.begin(), other.
tokens
.end());
47
}
48
49
void
50
ObjectMatch::setExpression
(
const
std::string &expr)
51
{
52
tokens
.resize(1);
53
tokenize
(
tokens
[0], expr,
'.'
);
54
}
55
56
void
57
ObjectMatch::setExpression
(
const
std::vector<std::string>
&expr)
58
{
59
if
(expr.empty()) {
60
tokens
.resize(0);
61
}
else
{
62
tokens
.resize(expr.size());
63
for
(
std::vector<std::string>::size_type
i
= 0;
i
< expr.size(); ++
i
)
64
tokenize
(
tokens
[
i
], expr[
i
],
'.'
);
65
}
66
}
67
72
bool
73
ObjectMatch::domatch
(
const
std::string &
name
)
const
74
{
75
std::vector<std::string>
name_tokens;
76
tokenize
(name_tokens,
name
,
'.'
);
77
int
ntsize = name_tokens.size();
78
79
int
num_expr =
tokens
.size();
80
for
(
int
i
= 0;
i
< num_expr; ++
i
) {
81
const
std::vector<std::string>
&
token
=
tokens
[
i
];
82
int
jstop =
token
.size();
83
84
bool
match
=
true
;
85
for
(
int
j
= 0;
j
< jstop; ++
j
) {
86
if
(
j
>= ntsize)
87
break
;
88
89
const
std::string &var =
token
[
j
];
90
if
(var !=
"*"
&& var != name_tokens[
j
]) {
91
match
=
false
;
92
break
;
93
}
94
}
95
96
if
(
match
)
97
return
true
;
98
}
99
100
return
false
;
101
}
102
103
std::vector<std::vector<std::string>
>
104
ObjectMatch::getExpressions
()
105
{
106
std::vector<std::vector<std::string>
> to_return;
107
for
(
const
auto
&expression:
tokens
) {
108
std::vector<std::string>
to_add;
109
to_add.insert(to_add.end(), expression.begin(), expression.end());
110
to_return.push_back(to_add);
111
}
112
113
return
to_return;
114
}
115
ArmISA::i
Bitfield< 7 > i
Definition:
miscregs_types.hh:63
ObjectMatch::match
bool match(const std::string &name) const
Definition:
match.hh:66
ObjectMatch::ObjectMatch
ObjectMatch()
Definition:
match.cc:34
tokenize
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
Definition:
str.cc:65
std::vector< std::string >
str.hh
ObjectMatch::domatch
bool domatch(const std::string &name) const
Definition:
match.cc:73
ArmISA::j
Bitfield< 24 > j
Definition:
miscregs_types.hh:54
ObjectMatch::tokens
std::vector< std::vector< std::string > > tokens
Definition:
match.hh:56
match.hh
SCMI::token
token
Definition:
scmi_platform.hh:77
name
const std::string & name()
Definition:
trace.cc:48
ObjectMatch::setExpression
void setExpression(const std::string &expression)
Definition:
match.cc:50
ObjectMatch::add
void add(const ObjectMatch &other)
Definition:
match.cc:44
ObjectMatch
ObjectMatch contains a vector of expressions.
Definition:
match.hh:53
ObjectMatch::getExpressions
std::vector< std::vector< std::string > > getExpressions()
Definition:
match.cc:104
Generated on Tue Jun 22 2021 15:28:25 for gem5 by
doxygen
1.8.17