| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64GenRegisterBankInfo.def | 102 // 41: FPExt: 16 to 32. <-- This must match FPExt16To32Idx. 105 // 43: FPExt: 16 to 32. <-- This must match FPExt16To64Idx. 108 // 45: FPExt: 32 to 64. <-- This must match FPExt32To64Idx. 111 // 47: FPExt vector: 64 to 128. <-- This must match FPExt64To128Idx.
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsOs16.cpp | 92 case Instruction::FPExt: in needsFP()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | SpeculativeExecution.cpp | 237 case Instruction::FPExt: in ComputeSpeculationCost()
|
| H A D | GVNSink.cpp | 473 case Instruction::FPExt: in lookupOrAdd()
|
| /freebsd-12.1/contrib/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 116 case Instruction::FPExt: in createReplacementInstr()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instructions.cpp | 2325 case Instruction::FPExt: in isNoopCast() 2582 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore); in Create() 2604 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd); in Create() 2774 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); in CreateFPCast() 2787 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); in CreateFPCast() 2972 return FPExt; // FP -> larger FP in getCastOpcode() 3049 case Instruction::FPExt: in castIsValid() 3177 ) : CastInst(Ty, FPExt, S, Name, InsertBefore) { in FPExtInst() 3183 ) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) { in FPExtInst()
|
| H A D | Constants.cpp | 1220 case Instruction::FPExt: in getWithOperands() 1548 case Instruction::FPExt: in getCast() 1633 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt); in getFPCast() 1700 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced); in getFPExtend() 2982 case Instruction::FPExt: in getAsInstruction()
|
| H A D | ConstantFold.cpp | 591 case Instruction::FPExt: in ConstantFoldCastInstruction() 1397 case Instruction::FPExt: in evaluateFCmpRelation() 1544 case Instruction::FPExt: in evaluateICmpRelation()
|
| H A D | Instruction.cpp | 342 case FPExt: return "fpext"; in getOpcodeName()
|
| H A D | ConstantRange.cpp | 607 case Instruction::FPExt: in castOp()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instruction.def | 192 HANDLE_CAST_INST(45, FPExt , FPExtInst ) // Extend floating point
|
| H A D | PatternMatch.h | 1205 inline CastClass_match<OpTy, Instruction::FPExt> m_FPExt(const OpTy &Op) { in m_FPExt() 1206 return CastClass_match<OpTy, Instruction::FPExt>(Op); in m_FPExt()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | CallingConvLower.h | 50 FPExt, // The floating-point value is fp-extended in the location. enumerator
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | CFLGraph.h | 532 case Instruction::FPExt: in visitConstantExpr()
|
| H A D | ObjCARCInstKind.cpp | 277 case Instruction::FPExt: in GetARCInstKind()
|
| H A D | TargetTransformInfo.cpp | 1053 case Instruction::FPExt: in getInstructionThroughput()
|
| H A D | ValueTracking.cpp | 1109 case Instruction::FPExt: in computeKnownBitsFromOperator() 2935 case Instruction::FPExt: in cannotBeOrderedLessThanZeroImpl() 3061 case Instruction::FPExt: in isKnownNeverNaN() 5050 case Instruction::FPExt: in lookThroughCast()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 1001 case Instruction::FPExt: in canEvaluateShuffled() 1093 case Instruction::FPExt: { in buildNew() 1169 case Instruction::FPExt: in evaluateInDifferentElementOrder()
|
| H A D | InstCombineCasts.cpp | 1508 if (auto *FPExt = dyn_cast<FPExtInst>(V)) in getMinimumFPType() local 1509 return FPExt->getOperand(0)->getType(); in getMinimumFPType()
|
| H A D | InstCombineSimplifyDemanded.cpp | 1425 case Instruction::FPExt: in SimplifyDemandedVectorElts()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoops.cpp | 472 case Instruction::FPExt: in mightUseCTR()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 731 if (Opcode == Instruction::FPExt) { in getCastInstrCost()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 844 INSTKEYWORD(fpext, FPExt); in LexIdentifier()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86FastISel.cpp | 2485 assert((I->getOpcode() == Instruction::FPExt || in X86SelectFPExtOrFPTrunc() 3406 case CCValAssign::FPExt: in fastLowerCall() 3643 case Instruction::FPExt: in fastSelectInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 681 case Instruction::FPExt:{ in getConstantValue()
|