| /src/external/gpl3/gdb/dist/sim/testsuite/mcore/ |
| sextb.s | 1 # check that sext.b/sext.h work correctly 7 # Construct -120 using bgeni+addi+sext
|
| sexth.s | 1 # check that sext.b/sext.h work correctly 7 # Construct -32760 using bgeni+addi+sext
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/mcore/ |
| sextb.s | 1 # check that sext.b/sext.h work correctly 7 # Construct -120 using bgeni+addi+sext
|
| sexth.s | 1 # check that sext.b/sext.h work correctly 7 # Construct -32760 using bgeni+addi+sext
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| gmon_io.cc | 94 int sext; local 97 sext = bfd_get_sign_extend_vma (core_bfd); 98 if (sext == -1) 100 return (sext ? ptr_signed : ptr_unsigned);
|
| /src/external/gpl3/gcc/dist/libgcc/config/riscv/ |
| div.S | 44 sext.w a0, a0 56 sext.w a0, a1
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/riscv/ |
| div.S | 44 sext.w a0, a0 56 sext.w a0, a1
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| KnownBits.h | 169 KnownBits sext(unsigned BitWidth) const { function in struct:llvm::KnownBits 170 return KnownBits(Zero.sext(BitWidth), One.sext(BitWidth)); 197 return sext(BitWidth);
|
| /src/external/gpl3/binutils/dist/gprof/ |
| gmon_io.c | 94 int sext; local 97 sext = bfd_get_sign_extend_vma (core_bfd); 98 if (sext == -1) 100 return (sext ? ptr_signed : ptr_unsigned);
|
| /src/external/gpl3/binutils.old/dist/gprof/ |
| gmon_io.c | 94 int sext; local 97 sext = bfd_get_sign_extend_vma (core_bfd); 98 if (sext == -1) 100 return (sext ? ptr_signed : ptr_unsigned);
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ScalarEvolutionDivision.cpp | 118 DenominatorVal = DenominatorVal.sext(NumeratorBW); 120 NumeratorVal = NumeratorVal.sext(DenominatorBW);
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/common/ |
| bits-tst.c | 120 if (strcmp (call, "SEXT") == 0) 121 return SEXT (val, col); 178 long long sext = calc (sexted, mask, -1, col); local 201 if (sext != msmask) 207 sexted, mask, col, sext, msmask, 370 printf ("Checking SEXT*\n"); 375 errors += check_sext (64, WITH_TARGET_WORD_MSB, "SEXT", "MASK", "MSMASK");
|
| /src/external/gpl3/gdb/dist/sim/testsuite/common/ |
| bits-tst.c | 121 if (strcmp (call, "SEXT") == 0) 122 return SEXT (val, col); 179 long long sext = calc (sexted, mask, -1, col); local 202 if (sext != msmask) 208 sexted, mask, col, sext, msmask, 369 printf ("Checking SEXT*\n"); 374 errors += check_sext (64, WITH_TARGET_WORD_MSB, "SEXT", "MASK", "MSMASK");
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| AMDGPUMCTargetDesc.cpp | 132 Target = (SignedOffset.sext(64) + Addr + Size).getZExtValue();
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ConstantRange.cpp | 654 case Instruction::SExt: 715 return ConstantRange(Lower.sext(DstTySize), Upper.zext(DstTySize)); 722 return ConstantRange(Lower.sext(DstTySize), Upper.sext(DstTySize)); 1044 this_min = getSignedMin().sext(getBitWidth() * 2); 1045 this_max = getSignedMax().sext(getBitWidth() * 2); 1046 Other_min = Other.getSignedMin().sext(getBitWidth() * 2); 1047 Other_max = Other.getSignedMax().sext(getBitWidth() * 2); 1468 APInt this_min = getSignedMin().sext(getBitWidth() * 2); 1469 APInt this_max = getSignedMax().sext(getBitWidth() * 2) [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| fixed-value.cc | 96 value.data = payload.sext (1 + GET_MODE_IBIT (mode) + GET_MODE_FBIT (mode)); 208 min = min.sext (1 + i_f_bits); 274 min_s = min_s.sext (1 + i_f_bits); 828 temp_high = temp_high.sext (amount); 971 temp_high = temp_high.sext (amount); 1068 f->data = f->data.sext (1 + i_f_bits);
|
| sanopt.cc | 433 offset_int ooffset = wi::sext (wi::to_offset (offset), POINTER_SIZE); 481 offset_int cur_offset = wi::sext (wi::to_offset (off), POINTER_SIZE); 506 expr_offset = wi::sext (expr_offset, POINTER_SIZE); 508 if (total_offset != wi::sext (total_offset, POINTER_SIZE))
|
| tree-ssa-ccp.cc | 618 = wi::sext (val.mask, TYPE_PRECISION (type)) == -1 ? VARYING : CONSTANT; 1104 if (wi::sext (val1->mask, TYPE_PRECISION (TREE_TYPE (val1->value))) == -1) 1374 if (wi::sext (rmask, rtype_precision) == -1) 1734 *mask = wi::sext (tmp, width); 1736 *val = wi::sext (tmp, width); 2013 || wi::sext (rval.mask, TYPE_PRECISION (TREE_TYPE (rhs))) == -1); 2017 if (wi::sext (mask, TYPE_PRECISION (type)) != -1) 2055 || wi::sext (r1val.mask, 2059 || wi::sext (r2val.mask, 2071 if (wi::sext (mask, TYPE_PRECISION (type)) != -1 [all...] |
| double-int.h | 162 double_int sext (unsigned prec) const;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| fixed-value.cc | 96 value.data = payload.sext (1 + GET_MODE_IBIT (mode) + GET_MODE_FBIT (mode)); 208 min = min.sext (1 + i_f_bits); 274 min_s = min_s.sext (1 + i_f_bits); 828 temp_high = temp_high.sext (amount); 971 temp_high = temp_high.sext (amount); 1068 f->data = f->data.sext (1 + i_f_bits);
|
| sanopt.cc | 433 offset_int ooffset = wi::sext (wi::to_offset (offset), POINTER_SIZE); 481 offset_int cur_offset = wi::sext (wi::to_offset (off), POINTER_SIZE); 506 expr_offset = wi::sext (expr_offset, POINTER_SIZE); 508 if (total_offset != wi::sext (total_offset, POINTER_SIZE))
|
| tree-ssa-ccp.cc | 611 = wi::sext (val.mask, TYPE_PRECISION (type)) == -1 ? VARYING : CONSTANT; 1094 if (wi::sext (val1->mask, TYPE_PRECISION (TREE_TYPE (val1->value))) == -1) 1373 if (wi::sext (rmask, rtype_precision) == -1) 1729 *mask = wi::sext (tmp, width); 1731 *val = wi::sext (tmp, width); 1995 || wi::sext (rval.mask, TYPE_PRECISION (TREE_TYPE (rhs))) == -1); 1999 if (wi::sext (mask, TYPE_PRECISION (type)) != -1) 2037 || wi::sext (r1val.mask, 2041 || wi::sext (r2val.mask, 2053 if (wi::sext (mask, TYPE_PRECISION (type)) != -1 [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| KnownBits.cpp | 91 "Illegal sext-in-register"); 499 KnownBits WideLHS = LHS.sext(2 * BitWidth); 500 KnownBits WideRHS = RHS.sext(2 * BitWidth);
|
| /src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
| llvm.vim | 34 syn keyword llvmStatement sext sge sgt shl shufflevector sitofp sle slt srem
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LowerExpectIntrinsic.cpp | 145 if (SExtInst *SExt = dyn_cast<SExtInst>(V)) { 146 V = SExt->getOperand(0); 147 Operations.push_back(SExt); 174 case Instruction::SExt: 175 Result = Result.sext(Op->getType()->getIntegerBitWidth());
|