Home
last modified time | relevance | path

Searched refs:OutVal (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterValuePrinter.cpp304 __clang_Interpreter_SetValueWithAlloc(void *This, void *OutVal, in __clang_Interpreter_SetValueWithAlloc() argument
306 Value &VRef = *(Value *)OutVal; in __clang_Interpreter_SetValueWithAlloc()
312 void *This, void *OutVal, void *OpaqueType, ...) { in __clang_Interpreter_SetValueNoAlloc() argument
313 Value &VRef = *(Value *)OutVal; in __clang_Interpreter_SetValueNoAlloc()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2850 const DbgValue &OutVal = *OutValIt->second; in pickVPHILoc() local
2853 if (OutVal.Kind == DbgValue::NoVal) in pickVPHILoc()
2858 if (OutVal.isUnjoinedPHI() && OutVal.BlockNo != MBB.getNumber()) in pickVPHILoc()
2861 if (!FirstValue.Properties.isJoinable(OutVal.Properties)) in pickVPHILoc()
2867 if (OutVal.isUnjoinedPHI()) { in pickVPHILoc()
2872 DbgOpID OutValOp = OutVal.getDbgOpID(Idx); in pickVPHILoc()
2920 const DbgValue &OutVal = *OutValIt->second; in pickOperandPHILoc() local
2921 DbgOpID OutValOpID = OutVal.getDbgOpID(DbgOpIdx); in pickOperandPHILoc()
2930 if (OutVal.Kind == DbgValue::Def || in pickOperandPHILoc()
2931 (OutVal.Kind == DbgValue::VPHI && OutVal.BlockNo != MBB.getNumber() && in pickOperandPHILoc()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp388 SDValue OutVal = OutVals[i]; in LowerReturn() local
395 OutVal = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn()
398 OutVal = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn()
401 OutVal = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn()
414 OutVal = SDValue(DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, DL, in LowerReturn()
415 MVT::i64, Undef, OutVal, Sub_f32), in LowerReturn()
423 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), OutVal, Glue); in LowerReturn()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp371 SDValue OutVal = OutVals[i]; in LowerReturn_64() local
377 OutVal = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn_64()
380 OutVal = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn_64()
383 OutVal = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), OutVal); in LowerReturn_64()
392 OutVal = DAG.getNode(ISD::SHL, DL, MVT::i64, OutVal, in LowerReturn_64()
399 OutVal = DAG.getNode(ISD::OR, DL, MVT::i64, OutVal, NV); in LowerReturn_64()
405 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), OutVal, Glue); in LowerReturn_64()
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1474 SDValue OutVal = N->getOperand(3); in PerformDAGCombine() local
1476 if (OutVal.hasOneUse()) { in PerformDAGCombine()
1477 unsigned BitWidth = OutVal.getValueSizeInBits(); in PerformDAGCombine()
1483 if (TLI.ShrinkDemandedConstant(OutVal, DemandedMask, TLO) || in PerformDAGCombine()
1484 TLI.SimplifyDemandedBits(OutVal, DemandedMask, Known, TLO)) in PerformDAGCombine()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1280 SDValue &OutVal = OutVals[I]; in LowerCall() local
1299 Chain = DAG.getMemcpy(Chain, DL, FINode, OutVal, SizeNode, in LowerCall()
1304 OutVal = FINode; in LowerCall()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp11869 SDValue OutVal = in LowerArguments() local
11877 OutVal = DAG.getNode(ISD::AssertNoFPClass, dl, OutVal.getValueType(), in LowerArguments()
11878 OutVal, SDNoFPClass); in LowerArguments()
11880 ArgValues.push_back(OutVal); in LowerArguments()