/external/llvm/lib/Target/Hexagon/ |
HexagonSplitConst32AndConst64.cpp | 112 int64_t ImmValue; 115 ImmValue = *Val.bitcastToAPInt().getRawData(); 118 ImmValue = MI->getOperand(1).getImm(); 121 TII->get(Hexagon::A2_tfrsi), DestReg).addImm(ImmValue); 131 int64_t ImmValue; 134 ImmValue = *Val.bitcastToAPInt().getRawData(); 137 ImmValue = MI->getOperand(1).getImm(); 142 int32_t LowWord = (ImmValue & 0xFFFFFFFF); 143 int32_t HighWord = (ImmValue >> 32) & 0xFFFFFFFF;
|
HexagonInstrInfo.cpp | [all...] |
HexagonHardwareLoops.cpp | 620 int Mask = 0, ImmValue = 0; 622 Mask, ImmValue); [all...] |
HexagonInstrInfoV4.td | [all...] |
/external/llvm/lib/Target/Mips/ |
MipsSEISelDAGToDAG.cpp | 523 APInt ImmValue; 529 if (selectVSplat(N.getNode(), ImmValue, EltTy.getSizeInBits()) && 530 ImmValue.getBitWidth() == EltTy.getSizeInBits()) { 532 if (( Signed && ImmValue.isSignedIntN(ImmBitSize)) || 533 (!Signed && ImmValue.isIntN(ImmBitSize))) { 534 Imm = CurDAG->getTargetConstant(ImmValue, SDLoc(N), EltTy); 599 APInt ImmValue; 605 if (selectVSplat(N.getNode(), ImmValue, EltTy.getSizeInBits()) && 606 ImmValue.getBitWidth() == EltTy.getSizeInBits()) { 607 int32_t Log2 = ImmValue.exactLogBase2() [all...] |
/external/valgrind/none/tests/mips64/ |
cvm_ins.c | 168 const int immvalue = 9; local 169 TESTINST3("seqi $t1, $t2 ,9 ", immvalue, t1, t2, immvalue); 187 const int immvalue = 9; local 188 TESTINST3("snei $t1, $t2 ,9 ", immvalue, t1, t2, immvalue);
|
/external/llvm/lib/Target/Mips/AsmParser/ |
MipsAsmParser.cpp | 183 bool loadImmediate(int64_t ImmValue, unsigned DstReg, unsigned SrcReg, [all...] |
/external/llvm/lib/Object/ |
MachOObjectFile.cpp | [all...] |
/system/core/libpixelflinger/tests/arch-arm64/assembler/ |
arm64_assembler_test.cpp | 142 uint32_t immValue; 165 uint32_t immValue; 436 op2 = a64asm->imm(test.immValue); 561 op2 = a64asm->immed12_pre(test.immValue, test.writeBack); 565 op2 = a64asm->immed12_post(test.immValue); 569 op2 = a64asm->immed8_pre(test.immValue, test.writeBack); 573 op2 = a64asm->immed8_post(test.immValue); [all...] |
/system/core/libpixelflinger/tests/arch-mips64/assembler/ |
mips64_assembler_test.cpp | 152 uint32_t immValue; 173 uint32_t immValue; 398 op2 = a64asm->imm(test.immValue); 514 op2 = a64asm->immed12_pre(test.immValue, test.writeBack); 518 op2 = a64asm->immed12_post(test.immValue); 522 op2 = a64asm->immed8_pre(test.immValue, test.writeBack); 526 op2 = a64asm->immed8_post(test.immValue);
|
/external/llvm/lib/Target/Sparc/AsmParser/ |
SparcAsmParser.cpp | 454 int32_t ImmValue = RawImmValue; 459 IsImm && ((is64Bit() ? 0 : -4096) <= ImmValue && ImmValue < 4096); 462 ValExpr = MCConstantExpr::create(ImmValue, getContext()); 492 if (!IsImm || IsEffectivelyImm13 || (ImmValue & 0x3ff)) { [all...] |
/external/llvm/lib/Target/AMDGPU/ |
R600ISelLowering.cpp | [all...] |
/external/v8/src/mips/ |
constants-mips.h | 1062 inline int32_t ImmValue(int bits) const { [all...] |
simulator-mips.cc | [all...] |
/external/v8/src/mips64/ |
constants-mips64.h | [all...] |
simulator-mips64.cc | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMBaseInstrInfo.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86InstrInfo.cpp | [all...] |