OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isImm
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCInst.h
62
bool
isImm
() const { return Kind == kImmediate; }
81
assert(
isImm
() && "This is not an immediate");
86
assert(
isImm
() && "This is not an immediate");
/src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp
375
bool
isImm
= fieldFromInstruction(insn, 13, 1);
380
if (
isImm
)
398
if (
isImm
)
532
unsigned
isImm
= fieldFromInstruction(insn, 13, 1);
535
if (
isImm
)
551
if (
isImm
)
565
unsigned
isImm
= fieldFromInstruction(insn, 13, 1);
568
if (
isImm
)
579
if (
isImm
)
594
unsigned
isImm
= fieldFromInstruction(insn, 13, 1)
[
all
...]
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenInstruction.h
364
bool
isImm
() const { return Kind == K_Imm; }
369
int64_t getImm() const { assert(
isImm
()); return Imm; }
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h
322
///
isImm
- Tests if this is a MO_Immediate operand.
323
bool
isImm
() const { return OpKind == MO_Immediate; }
538
assert(
isImm
() && "Wrong MachineOperand accessor");
656
assert(
isImm
() && "Wrong MachineOperand mutator");
/src/external/apache2/llvm/dist/llvm/lib/Target/M68k/AsmParser/
M68kAsmParser.cpp
165
bool
isImm
() const override;
288
bool M68kOperand::
isImm
() const { return Kind == Kind::Imm; }
290
assert(
isImm
() && "wrong oeprand kind");
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIFoldOperands.cpp
41
if (FoldOp->
isImm
()) {
55
bool
isImm
() const {
209
if (Fold.
isImm
()) {
257
if ((Fold.
isImm
() || Fold.isFI() || Fold.isGlobal()) && Fold.needsShrink()) {
301
if (Fold.
isImm
()) {
366
if (OpToFold->
isImm
()) {
417
(OpToFold->
isImm
() || OpToFold->isFI() || OpToFold->isGlobal())) {
454
if (OpToFold->
isImm
()) {
513
if (Op->
isImm
()) {
546
if (OpToFold.
isImm
() && TII->isInlineConstant(OpToFold, OpTy) &
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp
342
bool
isImm
() const { return Kind == CV_Immediate; }
355
assert(
isImm
() && "Wrong CountValue accessor");
361
if (
isImm
()) { OS << Contents.ImmVal; }
678
if (Op2.
isImm
() || Op1.getReg() == IVReg)
750
if (!Start->isReg() && !Start->
isImm
())
752
if (!End->isReg() && !End->
isImm
())
778
if (Start->
isImm
() && End->
isImm
()) {
850
bool RegToImm = Start->isReg() && End->
isImm
(); // for (reg..imm)
854
if (Start->
isImm
())
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp
231
bool
isImm
() const override {
234
bool
isImm
(int64_t MinValue, int64_t MaxValue) const {
363
bool isAnyReg() const { return (isReg() ||
isImm
(0, 15)); }
374
bool isU1Imm() const { return
isImm
(0, 1); }
375
bool isU2Imm() const { return
isImm
(0, 3); }
376
bool isU3Imm() const { return
isImm
(0, 7); }
377
bool isU4Imm() const { return
isImm
(0, 15); }
378
bool isU6Imm() const { return
isImm
(0, 63); }
379
bool isU8Imm() const { return
isImm
(0, 255); }
380
bool isS8Imm() const { return
isImm
(-128, 127);
[
all
...]
Completed in 41 milliseconds
Indexes created Wed Sep 23 00:26:21 UTC 2026