Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
28179ab0
Commit
28179ab0
authored
12 years ago
by
Richard Linden
Browse files
Options
Downloads
Patches
Plain Diff
SH-3405 WIP convert existing stats to lltrace system
cleaned up predicate system, made unknown work with remove
parent
638a16ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llcommon/llpredicate.cpp
+14
-0
14 additions, 0 deletions
indra/llcommon/llpredicate.cpp
indra/llcommon/llpredicate.h
+22
-33
22 additions, 33 deletions
indra/llcommon/llpredicate.h
with
36 additions
and
33 deletions
indra/llcommon/llpredicate.cpp
+
14
−
0
View file @
28179ab0
...
...
@@ -30,4 +30,18 @@
namespace
LLPredicate
{
EmptyRule
make_rule
()
{
return
EmptyRule
();
}
int
predicateFlagsFromValue
(
int
value
)
{
llassert
(
value
<
5
);
static
const
int
predicates
[
5
]
=
{
0xAAAAaaaa
,
// 10101010101010101010101010101010
0xCCCCcccc
,
// 11001100110011001100110011001100
0xF0F0F0F0
,
// 11110000111100001111000011110000
0xFF00FF00
,
// 11111111000000001111111100000000
0xFFFF0000
// 11111111111111110000000000000000
};
return
predicates
[
value
];
}
}
This diff is collapsed.
Click to expand it.
indra/llcommon/llpredicate.h
+
22
−
33
View file @
28179ab0
...
...
@@ -33,21 +33,21 @@ namespace LLPredicate
{
template
<
typename
ENUM
>
class
Rule
;
int
predicateFlagsFromValue
(
int
value
);
template
<
typename
ENUM
>
struct
Value
{
friend
Rule
<
ENUM
>
;
public:
Value
(
ENUM
e
)
:
mPredicateFlags
(
0x1
),
mPredicateCombinationFlags
(
0x1
)
:
mPredicateCombinationFlags
(
0x1
)
{
add
(
e
);
}
Value
()
:
mPredicateFlags
(
0x1
),
mPredicateCombinationFlags
(
0x1
)
:
mPredicateCombinationFlags
(
0x1
)
{}
void
add
(
ENUM
predicate
)
...
...
@@ -55,39 +55,42 @@ namespace LLPredicate
llassert
(
predicate
<
5
);
if
(
!
has
(
predicate
))
{
int
predicate_flag
=
0x1
<<
(
0x1
<<
(
int
)
predicate
);
mPredicateCombinationFlags
*=
predicate_flag
;
mPredicateFlags
|=
predicate_flag
;
int
predicate_shift
=
0x1
<<
(
int
)
predicate
;
mPredicateCombinationFlags
<<=
predicate_shift
;
}
}
void
remove
(
ENUM
predicate
)
{
llassert
(
predicate
<
5
);
int
predicate_flag
=
0x1
<<
(
0x1
<<
(
int
)
predicate
);
if
(
mPredicateFlags
&
predicate_flag
)
{
mPredicateCombinationFlags
/=
predicate_flag
;
mPredicateFlags
&=
~
predicate_flag
;
}
int
predicate_shift
=
0x1
<<
(
int
)
predicate
;
int
flag_mask
=
predicateFlagsFromValue
(
predicate
);
int
flags_to_modify
=
mPredicateCombinationFlags
&
flag_mask
;
// clear flags containing predicate to be removed
mPredicateCombinationFlags
&=
~
flag_mask
;
// shift flags, in effect removing predicate
flags_to_modify
>>=
predicate_shift
;
// put modified flags back
mPredicateCombinationFlags
|=
flags_to_modify
;
}
void
unknown
(
ENUM
predicate
)
{
add
(
predicate
);
int
predicate_shift
=
0x1
<<
(
int
)
predicate
;
mPredicateCombinationFlags
|=
mPredicateCombinationFlags
<<
predicate_shift
;
int
flags_with_predicate
=
mPredicateCombinationFlags
;
remove
(
predicate
);
// unknown is result of adding and removing predicate at the same time!
mPredicateCombinationFlags
|=
flags_with_predicate
;
}
bool
has
(
ENUM
predicate
)
{
int
predicate
_f
lag
=
0x1
<<
(
0x1
<<
(
int
)
predicate
);
return
(
mPredicate
Flags
&
predicate_flag
)
!=
0
;
int
flag_mask
=
predicate
F
lag
sFromValue
(
predicate
);
return
(
mPredicate
CombinationFlags
&
flag_mask
)
!=
0
;
}
private
:
int
mPredicateCombinationFlags
;
int
mPredicateFlags
;
};
struct
EmptyRule
{};
...
...
@@ -97,7 +100,7 @@ namespace LLPredicate
{
public:
Rule
(
ENUM
value
)
:
mPredicateRequirements
(
predicateFromValue
(
value
))
:
mPredicateRequirements
(
predicateF
lagsF
romValue
(
value
))
{}
Rule
()
...
...
@@ -130,20 +133,6 @@ namespace LLPredicate
return
((
value
.
mPredicateCombinationFlags
|
0x1
)
&
mPredicateRequirements
)
!=
0
;
}
static
int
predicateFromValue
(
ENUM
value
)
{
llassert
(
value
<
5
);
static
const
int
predicates
[
5
]
=
{
0xAAAAaaaa
,
// 10101010101010101010101010101010
0xCCCCcccc
,
// 11001100110011001100110011001100
0xF0F0F0F0
,
// 11110000111100001111000011110000
0xFF00FF00
,
// 11111111000000001111111100000000
0xFFFF0000
// 11111111111111110000000000000000
};
return
predicates
[
value
];
}
bool
isTriviallyTrue
()
const
{
return
mPredicateRequirements
&
0x1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment