OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isImm
(Results
1 - 10
of
10
) sorted by null
/external/llvm/lib/Target/PTX/
PTXISelDAGToDAG.cpp
49
bool
isImm
(const SDValue &operand);
96
isImm
(Addr.getOperand(0)) ||
isImm
(Addr.getOperand(1)))
112
if (
isImm
(Addr))
128
if (
isImm
(Addr.getOperand(0)) &&
isImm
(Addr.getOperand(1)))
163
bool PTXDAGToDAGISel::
isImm
(const SDValue &operand) {
/external/llvm/include/llvm/MC/
MCInst.h
53
bool
isImm
() const { return Kind == kImmediate; }
70
assert(
isImm
() && "This is not an immediate");
74
assert(
isImm
() && "This is not an immediate");
/external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp
175
bool
isImm
() const { return Kind == Immediate; }
372
if (!Offset.isReg() && !Offset.
isImm
()) {
/external/llvm/include/llvm/CodeGen/
MachineOperand.h
177
///
isImm
- Tests if this is a MO_Immediate operand.
178
bool
isImm
() const { return OpKind == MO_Immediate; }
337
assert(
isImm
() && "Wrong MachineOperand accessor");
401
assert(
isImm
() && "Wrong MachineOperand mutator");
/external/llvm/utils/TableGen/
CodeGenInstruction.h
298
bool
isImm
() const { return Kind == K_Imm; }
303
int64_t getImm() const { assert(
isImm
()); return Imm; }
/external/llvm/lib/Target/ARM/
ARMMCCodeEmitter.cpp
418
} else if (MO.
isImm
()) {
463
if (MO.
isImm
()) return MO.getImm();
516
if (MCOp1.
isImm
() && MCOp2.isReg() &&
713
if (MO.
isImm
())
831
bool
isImm
= MO.getReg() == 0;
834
if (!
isImm
)
836
return Imm8 | (isAdd << 8) | (
isImm
<< 9);
[
all
...]
/external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp
190
bool
isImm
() const { return Kind == Immediate; }
193
if (!
isImm
())
210
if (!
isImm
())
227
if (!
isImm
())
243
if (!
isImm
())
895
if (Op1->
isImm
() && isa<MCConstantExpr>(Op1->getImm()) &&
906
if (Op1->
isImm
() && isa<MCConstantExpr>(Op1->getImm()) &&
[
all
...]
/external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp
619
Jump
isImm
= emitJumpIfNotJSCell(regT0);
621
isImm
.link(this);
[
all
...]
JITOpcodes32_64.cpp
775
Jump
isImm
= branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag));
777
isImm
.link(this);
[
all
...]
/external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
379
bool
isImm
() const { return Kind == Immediate; }
[
all
...]
Completed in 90 milliseconds