| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64GenRegisterBankInfo.def | 107 // 44: FPExt: 16 to 32. <-- This must match FPExt16To32Idx. 110 // 46: FPExt: 16 to 32. <-- This must match FPExt16To64Idx. 113 // 48: FPExt: 32 to 64. <-- This must match FPExt32To64Idx. 116 // 50: FPExt vector: 64 to 128. <-- This must match FPExt64To128Idx.
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | MipsOs16.cpp | 92 case Instruction::FPExt: in needsFP()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | SpeculativeExecution.cpp | 238 case Instruction::FPExt: in ComputeSpeculationCost()
|
| H A D | GVNSink.cpp | 483 case Instruction::FPExt: in lookupOrAdd()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | ConstrainedOps.def | 57 DAG_INSTRUCTION(FPExt, 1, 0, experimental_constrained_fpext, FP_EXTEND)
|
| H A D | Instruction.def | 192 HANDLE_CAST_INST(46, FPExt , FPExtInst ) // Extend floating point
|
| H A D | VPIntrinsics.def | 389 HELPER_REGISTER_FP_CAST_VP(fpext, VP_FP_EXTEND, FPExt, 0)
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/ |
| H A D | MVELaneInterleavingPass.cpp | 188 case Instruction::FPExt: in tryInterleave()
|
| H A D | ARMTargetTransformInfo.cpp | 507 (Opcode == Instruction::FPExt || Opcode == Instruction::FPTrunc) && in getCastInstrCost() 1951 case Instruction::FPExt: in maybeLoweredToCall()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 1695 if (auto *FPExt = dyn_cast<FPExtInst>(V)) in getMinimumFPType() local 1696 return FPExt->getOperand(0)->getType(); in getMinimumFPType() 1709 if (FPCExt->getOpcode() == Instruction::FPExt) in getMinimumFPType() 1953 Instruction *InstCombinerImpl::visitFPExt(CastInst &FPExt) { in visitFPExt() argument 1956 Type *Ty = FPExt.getType(); in visitFPExt() 1957 Value *Src = FPExt.getOperand(0); in visitFPExt() 1964 return commonCastTransforms(FPExt); in visitFPExt()
|
| H A D | InstCombineVectorOps.cpp | 1501 CastOpcode = Instruction::FPExt; in narrowInsElt() 1781 case Instruction::FPExt: in canEvaluateShuffled() 1872 case Instruction::FPExt: { in buildNew() 1940 case Instruction::FPExt: in evaluateInDifferentElementOrder()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | CallingConvLower.h | 49 FPExt, // The floating-point value is fp-extended in the location. enumerator
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Instructions.cpp | 3098 case Instruction::FPExt: in isNoopCast() 3363 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore); in Create() 3385 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd); in Create() 3557 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); in CreateFPCast() 3570 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); in CreateFPCast() 3697 return FPExt; // FP -> larger FP in getCastOpcode() 3774 case Instruction::FPExt: in castIsValid() 3887 ) : CastInst(Ty, FPExt, S, Name, InsertBefore) { in FPExtInst() 3893 ) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) { in FPExtInst()
|
| H A D | Constants.cpp | 1478 case Instruction::FPExt: in getWithOperands() 1991 case Instruction::FPExt: in getCast() 2087 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt); in getFPCast() 2154 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced); in getFPExtend() 3432 case Instruction::FPExt: in getAsInstruction()
|
| H A D | ConstantFold.cpp | 434 case Instruction::FPExt: in ConstantFoldCastInstruction() 1359 case Instruction::FPExt: in evaluateFCmpRelation() 1506 case Instruction::FPExt: in evaluateICmpRelation()
|
| H A D | Instruction.cpp | 449 case FPExt: return "fpext"; in getOpcodeName()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | ObjCARCInstKind.cpp | 276 case Instruction::FPExt: in GetARCInstKind()
|
| H A D | TargetTransformInfo.cpp | 845 case Instruction::FPExt: in getCastContextHint()
|
| H A D | ValueTracking.cpp | 1164 case Instruction::FPExt: in computeKnownBitsFromOperator() 3646 case Instruction::FPExt: in cannotBeOrderedLessThanZeroImpl() 3804 case Instruction::FPExt: { in isKnownNeverInfinity() 3942 case Instruction::FPExt: in isKnownNeverNaN() 6506 case Instruction::FPExt: in lookThroughCast()
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 848 INSTKEYWORD(fpext, FPExt); in LexIdentifier()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 891 if (Opcode == Instruction::FPExt) { in getCastInstrCost()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfoImpl.h | 1109 case Instruction::FPExt: in getInstructionCost()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64CallLowering.cpp | 309 if (VA.getLocInfo() != CCValAssign::LocInfo::FPExt) { in assignValueToAddress()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86FastISel.cpp | 2457 assert((I->getOpcode() == Instruction::FPExt || in X86SelectFPExtOrFPTrunc() 3376 case CCValAssign::FPExt: in fastLowerCall() 3615 case Instruction::FPExt: in fastSelectInstruction()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 674 case Instruction::FPExt:{ in getConstantValue()
|