OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Immed
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCMIPeephole.cpp
499
int
Immed
= MI.getOperand(3).getImm();
501
if (
Immed
== 1)
507
// XXPERMDI t, SUBREG_TO_REG(s), SUBREG_TO_REG(s),
immed
.
541
if ((
Immed
== 0 ||
Immed
== 3) &&
586
else if ((
Immed
== 0 ||
Immed
== 3) && DefImmed == 2) {
591
MI.getOperand(3).setImm(3 -
Immed
);
597
else if (
Immed
== 2 && DefImmed == 2) {
606
} else if ((
Immed
== 0 || Immed == 3) && DefOpc == PPC::XXPERMDIs &
[
all
...]
PPCInstrInfo.cpp
2492
int16_t
Immed
= (int16_t)Value;
2496
if (
Immed
== -1 && PredCond == PPC::PRED_GT)
2500
else if (
Immed
== -1 && PredCond == PPC::PRED_LE)
2503
else if (
Immed
== 1 && PredCond == PPC::PRED_LT)
2506
else if (
Immed
== 1 && PredCond == PPC::PRED_GE)
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64InstructionSelector.cpp
307
ComplexRendererFns select12BitValueWithLeftShift(uint64_t
Immed
) const;
596
uint64_t
Immed
;
598
Immed
= Root.getImm();
600
Immed
= Root.getCImm()->getZExtValue();
606
Immed
= ValAndVReg->Value.getSExtValue();
609
return
Immed
;
5115
uint64_t
Immed
) const {
5117
if (
Immed
>> 12 == 0) {
5119
} else if ((
Immed
& 0xfff) == 0 &&
Immed
>> 24 == 0)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp
405
uint64_t
Immed
= cast<ConstantSDNode>(N.getNode())->getZExtValue();
408
if (
Immed
>> 12 == 0) {
410
} else if ((
Immed
& 0xfff) == 0 &&
Immed
>> 24 == 0) {
412
Immed
=
Immed
>> 12;
418
Val = CurDAG->getTargetConstant(
Immed
, dl, MVT::i32);
436
uint64_t
Immed
= cast<ConstantSDNode>(N.getNode())->getZExtValue();
441
if (
Immed
== 0)
445
Immed
= ~((uint32_t)Immed) + 1
[
all
...]
AArch64ISelLowering.cpp
11680
bool AArch64TargetLowering::isLegalAddImmediate(int64_t
Immed
) const {
11681
if (
Immed
== std::numeric_limits<int64_t>::min()) {
11682
LLVM_DEBUG(dbgs() << "Illegal add imm " <<
Immed
11687
Immed
= std::abs(
Immed
);
11688
bool IsLegal = ((
Immed
>> 12) == 0 ||
11689
((
Immed
& 0xfff) == 0 &&
Immed
>> 24 == 0));
11690
LLVM_DEBUG(dbgs() << "Is " <<
Immed
11697
bool AArch64TargetLowering::isLegalICmpImmediate(int64_t
Immed
) const
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp
368
bool MSP430TargetLowering::isLegalICmpImmediate(int64_t
Immed
) const {
370
return
Immed
>= -32 &&
Immed
< 32;
371
return TargetLowering::isLegalICmpImmediate(
Immed
);
Completed in 118 milliseconds
Indexes created Tue Jun 23 00:25:03 UTC 2026