/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/ |
D | Utils.cpp | 195 MI->getOperand(1).getCImm()->getBitWidth() <= 64) in getConstantVRegVal() 196 return MI->getOperand(1).getCImm()->getSExtValue(); in getConstantVRegVal()
|
D | LegalizerHelper.cpp | 528 const APInt &Cst = MI.getOperand(1).getCImm()->getValue(); in narrowScalar() 736 const APInt &Val = SrcMO.getCImm()->getValue().sext(WideTy.getSizeInBits()); in widenScalar()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/ |
D | MachineOperandTest.cpp | 97 ASSERT_TRUE(MO.getCImm() == CImm); in TEST() 98 ASSERT_TRUE(MO.getCImm()->getValue() == Int); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64InstructionSelector.cpp | 879 uint64_t Val = I.getOperand(1).getCImm()->getZExtValue(); in select() 1552 Immed = Root.getCImm()->getZExtValue(); in selectArithImmed() 1558 if (!Op1.isCImm() || Op1.getCImm()->getBitWidth() > 64) in selectArithImmed() 1560 Immed = Op1.getCImm()->getZExtValue(); in selectArithImmed() 1610 if (!RHSOp1.isCImm() || RHSOp1.getCImm()->getBitWidth() > 64) in selectAddrModeUnscaled() 1612 RHSC = RHSOp1.getCImm()->getSExtValue(); in selectAddrModeUnscaled() 1656 int64_t RHSC = (int64_t)RHSDef->getOperand(1).getCImm()->getZExtValue(); in selectAddrModeIndexed()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | InstructionSelectorImpl.h | 254 Value = State.MIs[InsnID]->getOperand(1).getCImm()->getSExtValue(); in executeMatchTable() 278 Value = State.MIs[InsnID]->getOperand(1).getCImm()->getValue(); in executeMatchTable() 579 if (!MO.isCImm() || !MO.getCImm()->equalsInt(Value)) { in executeMatchTable() 819 State.MIs[OldInsnID]->getOperand(1).getCImm()->getSExtValue()); in executeMatchTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineOperand.cpp | 272 return getCImm() == Other.getCImm(); in isIdenticalTo() 335 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); in hash_value() 787 getCImm()->printAsOperand(OS, /*PrintType=*/true, MST); in print()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstructionSelector.cpp | 119 return MI->getOperand(1).getCImm()->getSExtValue(); in getConstant() 333 ImmOp.ChangeToImmediate(ImmOp.getCImm()->getZExtValue()); in selectG_CONSTANT() 413 GEPInfo.Imm = OpDef->getOperand(1).getCImm()->getSExtValue(); in getAddrModeInfo()
|
D | AMDGPURegisterBankInfo.cpp | 63 C = Def->getOperand(1).getCImm()->getSExtValue(); in isConstant()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsInstructionSelector.cpp | 148 int Imm = I.getOperand(1).getCImm()->getValue().getLimitedValue(); in select()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineOperand.h | 365 const ConstantInt *getCImm() const { in getCImm() function
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 230 return getCImm() == Other.getCImm(); in isIdenticalTo() 272 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); in hash_value() 373 getCImm()->getValue().print(OS, false); in print()
|
D | MIRPrinter.cpp | 787 Op.getCImm()->printAsOperand(OS, /*PrintType=*/true, MST); in print()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | MachineInstr.cpp | 201 return getCImm() == Other.getCImm(); in isIdenticalTo() 276 getCImm()->getValue().print(OS, false); in print()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 415 const ConstantInt *getCImm() const { in getCImm() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 531 const ConstantInt *getCImm() const { in getCImm() function
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 535 addConstantValue(*VariableDie, DVInsn->getOperand(0).getCImm(), in constructVariableDIEImpl()
|
D | DwarfDebug.cpp | 763 return DebugLocEntry::Value(Expr, MI->getOperand(0).getCImm()); in getDebugLocValue()
|
D | AsmPrinter.cpp | 766 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/); in emitDebugValueComment()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMInstructionSelector.cpp | 801 if (!Val.getCImm()->isZero()) { in select()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 555 addConstantValue(*VariableDie, DVInsn->getOperand(0).getCImm(), in constructVariableDIEImpl()
|
D | DwarfDebug.cpp | 987 return DebugLocEntry::Value(Expr, MI->getOperand(0).getCImm()); in getDebugLocValue()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 1274 DVInsn->getOperand(0).getCImm(), in constructVariableDIE()
|
D | AsmPrinter.cpp | 581 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/); in EmitDebugValueComment()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonBitSimplify.cpp | 2628 return !Op.getCImm()->isZero(); in simplifyRCmp0() 2640 return Op.getCImm()->isZero(); in simplifyRCmp0()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86InstructionSelector.cpp | 628 Val = I.getOperand(1).getCImm()->getZExtValue(); in selectConstant()
|