Home
last modified time | relevance | path

Searched refs:isNeg (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp474 bool isNeg = false; in expandMOVImmSimple() local
479 isNeg = true; in expandMOVImmSimple()
486 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple()
488 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple()
508 if (isNeg) in expandMOVImmSimple()
515 if (Imm16 == (isNeg ? Mask : 0)) in expandMOVImmSimple()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h56 OutputBuffer &writeUnsigned(uint64_t N, bool isNeg = false) {
67 if (isNeg)
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp845 bool isNeg = I >> 63; in RoundDoubleToAPInt() local
859 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : in RoundDoubleToAPInt()
870 return isNeg ? -Tmp : Tmp; in RoundDoubleToAPInt()
892 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; in roundToDouble() local
895 APInt Tmp(isNeg ? -(*this) : (*this)); in roundToDouble()
907 if (!isSigned || !isNeg) in roundToDouble()
930 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0; in roundToDouble()
1387 bool isNeg = u[j+n] < borrow; in KnuthDiv() local
1397 if (isNeg) { in KnuthDiv()
2122 bool isNeg = *p == '-'; in fromString() local
[all …]
H A DAPFloat.cpp4316 void toStringImpl(SmallVectorImpl<char> &Str, const bool isNeg, int exp, in toStringImpl() argument
4321 if (isNeg) in toStringImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp105 static bool isNeg(Value *V);
535 bool isNeg(Value *V) { in isNeg() function
540 assert(isNeg(V)); in getNegOperand()
602 if (isNeg(I0)) { in identifyNodeWithImplicitAdd()
1189 if (isNeg(I)) { in identifyReassocNodes()
1199 if (isNeg(I->getOperand(0))) { in identifyReassocNodes()
1206 if (isNeg(I->getOperand(1))) { in identifyReassocNodes()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp413 template <bool isNeg, ARM::Fixups fixup>
1976 template <bool isNeg, ARM::Fixups fixup>
1984 return isNeg ? -(MO.getImm() >> 1) : (MO.getImm() >> 1); in getBFTargetOpValue()
/freebsd/stand/ficl/
H A Dwords.c207 char isNeg = FALSE; in ficlParseNumber() local
222 isNeg = TRUE; in ficlParseNumber()
227 isNeg = FALSE; in ficlParseNumber()
262 if (isNeg) in ficlParseNumber()
/freebsd/contrib/sqlite3/
H A Dshell.c6404 int isNeg; in decimalFromDouble() local
6409 isNeg = 1; in decimalFromDouble()
6412 isNeg = 0; in decimalFromDouble()
6430 if( isNeg ) m = -m; in decimalFromDouble()
7566 int isNeg; in ieee754func() local
7583 isNeg = 1; in ieee754func()
7586 isNeg = 0; in ieee754func()
7607 if( isNeg ) m = -m; in ieee754func()
7625 int isNeg = 0; in ieee754func() local
7638 isNeg = 1; in ieee754func()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/DirectToLLVM/
H A DLowerToLLVM.cpp468 auto isNeg = rewriter.create<mlir::LLVM::ICmpOp>( in matchAndRewrite() local
480 op.getLoc(), isNeg, flipped, adaptor.getInput()); in matchAndRewrite()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp615 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
6293 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
6309 Inst.addOperand(MCOperand::createImm(isNeg ? -DecVal : DecVal)); in DecodeBFLabelOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrThumb2.td371 class BFLabelOp<string signed, string isNeg, string zeroPermitted, string size,
374 let EncoderMethod = !strconcat("getBFTargetOpValue<", isNeg, ", ",
378 isNeg, ", ", zeroPermitted, ", ", size, ">");
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc21571 {"_ZN4llvm14BinaryOperator5isNegEPKNS_5ValueE", "llvm::BinaryOperator::isNeg(llvm::Value const*)"},