Home
last modified time | relevance | path

Searched refs:RetValue (Results 1 – 14 of 14) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbtest.c1029 ACPI_OBJECT *RetValue; in AcpiDbReadFromObject() local
1057 RetValue = (ACPI_OBJECT *) ReturnObj.Pointer; in AcpiDbReadFromObject()
1059 switch (RetValue->Type) in AcpiDbReadFromObject()
1070 if (RetValue->Type != ExpectedType) in AcpiDbReadFromObject()
1074 AcpiUtGetTypeName (RetValue->Type)); in AcpiDbReadFromObject()
1080 *Value = RetValue; in AcpiDbReadFromObject()
1086 AcpiUtGetTypeName (RetValue->Type)); in AcpiDbReadFromObject()
H A Ddbnames.c745 ACPI_OBJECT *RetValue; in AcpiDbWalkForFields() local
789 RetValue = (ACPI_OBJECT *) Buffer.Pointer; in AcpiDbWalkForFields()
790 switch (RetValue->Type) in AcpiDbWalkForFields()
794 AcpiOsPrintf ("%8.8X%8.8X", ACPI_FORMAT_UINT64 (RetValue->Integer.Value)); in AcpiDbWalkForFields()
799 AcpiUtDumpBuffer (RetValue->Buffer.Pointer, in AcpiDbWalkForFields()
800 RetValue->Buffer.Length, DB_DISPLAY_DATA_ONLY | DB_BYTE_DISPLAY, 0); in AcpiDbWalkForFields()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaISelLowering.cpp462 SDValue RetValue = DAG.getCopyFromReg(Chain, DL, Reg, VA.getLocVT(), Glue); in LowerCall() local
463 Chain = RetValue.getValue(1); in LowerCall()
464 Glue = RetValue.getValue(2); in LowerCall()
466 InVals.push_back(RetValue); in LowerCall()
505 SDValue RetValue = OutVals[I]; in LowerReturn() local
512 Chain = DAG.getCopyToReg(Chain, DL, Register, RetValue, Glue); in LowerReturn()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp417 SDValue RetValue; in lowerCallResult() local
418 RetValue = in lowerCallResult()
420 Chain = RetValue.getValue(1); in lowerCallResult()
421 Glue = RetValue.getValue(2); in lowerCallResult()
422 InVals.push_back(RetValue); in lowerCallResult()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.cpp723 SDValue RetValue = in LowerCall() local
726 Chain = RetValue.getValue(1); in LowerCall()
727 Glue = RetValue.getValue(2); in LowerCall()
737 RetValue = DAG.getNode(CSKYISD::BITCAST_FROM_LOHI, DL, VA.getValVT(), in LowerCall()
738 RetValue, RetValue2); in LowerCall()
741 RetValue = convertLocVTToValVT(DAG, RetValue, VA, DL); in LowerCall()
743 InVals.push_back(RetValue); in LowerCall()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp359 Expr *RetValue = Return->getRetValue(); in VisitReturnStmt() local
360 if (RetValue != nullptr && RetValue->getType()->isRecordType() && in VisitReturnStmt()
361 RetValue->isPRValue()) in VisitReturnStmt()
362 PropagateResultObject(RetValue, LocForRecordReturnVal); in VisitReturnStmt()
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp515 Value *RetValue = nullptr; in connectBlocksToSink() local
517 RetValue = in connectBlocksToSink()
519 ReturnInst::Create(C, RetValue, BB); in connectBlocksToSink()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp147 auto RetValue = IC.eraseInstFromFunction(InstToReplace); in modifyIntrinsicCall() local
151 return RetValue; in modifyIntrinsicCall()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DOpcodes.td190 def RetValue : Opcode {
H A DInterp.cpp34 static bool RetValue(InterpState &S, CodePtr &Pt, APValue &Result) { in RetValue() function
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp5503 SDValue RetValue = in LowerCall() local
5506 Chain = RetValue.getValue(1); in LowerCall()
5507 Glue = RetValue.getValue(2); in LowerCall()
5509 RetValue = convertLocVTToValVT(DAG, RetValue, VA, DL); in LowerCall()
5511 InVals.push_back(RetValue); in LowerCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2103 SDValue RetValue = DAG.getCopyFromReg(Chain, DL, VA.getLocReg(), in LowerCall() local
2105 Chain = RetValue.getValue(1); in LowerCall()
2106 Glue = RetValue.getValue(2); in LowerCall()
2110 InVals.push_back(convertLocVTToValVT(DAG, DL, VA, Chain, RetValue)); in LowerCall()
2192 SDValue RetValue = OutVals[I]; in LowerReturn() local
2198 RetValue = convertValVTToLocVT(DAG, DL, VA, RetValue); in LowerReturn()
2202 Chain = DAG.getCopyToReg(Chain, DL, Reg, RetValue, Glue); in LowerReturn()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h8189 if (const auto *RetValue = Node.getRetValue()) in AST_MATCHER_P() local
8190 return InnerMatcher.matches(*RetValue, Finder, Builder); in AST_MATCHER_P()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp20170 SDValue RetValue = in LowerCall()
20172 // Glue the RetValue to the end of the call sequence in LowerCall()
20173 Chain = RetValue.getValue(1); in LowerCall()
20174 Glue = RetValue.getValue(2); in LowerCall()
20182 RetValue = DAG.getNode(RISCVISD::BuildPairF64, DL, MVT::f64, RetValue, in LowerCall()
20186 RetValue = convertLocVTToValVT(DAG, RetValue, VA, DL, Subtarget); in LowerCall()
20188 InVals.push_back(RetValue); in LowerCall()
20167 SDValue RetValue = LowerCall() local