OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InsertMask
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp
242
// Check whether (or Op (and X
InsertMask
)) is effectively an insertion
243
// of X into bits
InsertMask
of some Y != Op. Return true if so and
245
bool detectOrAndInsertion(SDValue &Op, uint64_t
InsertMask
);
591
uint64_t
InsertMask
) {
605
if (
InsertMask
& AndMask)
611
if (Used != (AndMask |
InsertMask
)) {
614
if (Used != (AndMask |
InsertMask
| KnownZero.getZExtValue()))
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp
410
unsigned
InsertMask
= RKZ.getZExtValue();
412
if ((TargetMask |
InsertMask
) == 0xFFFFFFFF) {
417
InsertMask
= ~
InsertMask
;
428
std::swap(TargetMask,
InsertMask
);
436
std::swap(TargetMask,
InsertMask
);
441
if (isRunOfOnes(
InsertMask
, MB, ME)) {
454
// otherwise there would not be any bits set in
InsertMask
.
[
all
...]
Completed in 282 milliseconds