Home
last modified time | relevance | path

Searched refs:Ret (Results 126 – 150 of 280) sorted by relevance

12345678910>>...12

/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A Draw_ostream.cpp923 ssize_t Ret = ::read(get_fd(), (void *)Ptr, Size); in read() local
924 if (Ret >= 0) in read()
925 inc_pos(Ret); in read()
928 return Ret; in read()
H A DYAMLTraits.cpp145 std::vector<StringRef> Ret; in keys() local
148 return Ret; in keys()
151 Ret.push_back(P.first()); in keys()
152 return Ret; in keys()
/netbsd/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp1189 auto Ret = getProfileSum(BaseFilename, Base); in accumulateCounts() local
1190 if (Ret) in accumulateCounts()
1191 return Ret; in accumulateCounts()
1192 Ret = getProfileSum(TestFilename, Test); in accumulateCounts()
1193 if (Ret) in accumulateCounts()
1194 return Ret; in accumulateCounts()
H A DSampleProfWriter.cpp454 const auto &Ret = NameTable.find(FName); in writeNameIdx() local
455 if (Ret == NameTable.end()) in writeNameIdx()
457 encodeULEB128(Ret->second, *OutputStream); in writeNameIdx()
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOUniversal.cpp125 std::unique_ptr<MachOUniversalBinary> Ret( in create() local
129 return std::move(Ret); in create()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUCallLowering.h38 ArrayRef<Register> VRegs, MachineInstrBuilder &Ret) const;
H A DAMDGPUCallLowering.cpp285 MachineInstrBuilder &Ret) const { in lowerReturnVal()
342 AMDGPUOutgoingValueHandler RetHandler(B, *MRI, Ret); in lowerReturnVal()
373 auto Ret = B.buildInstrNoInsert(ReturnOpc); in lowerReturn() local
377 Ret.addUse(ReturnAddrVReg); in lowerReturn()
382 else if (!lowerReturnVal(B, Val, VRegs, Ret)) in lowerReturn()
394 B.insertInstr(Ret); in lowerReturn()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp146 auto const Ret = AliveGlobals.insert(&GV); in MarkLive() local
147 if (!Ret.second) in MarkLive()
/netbsd/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp258 llvm::json::Array Ret; in toJSONSorted() local
260 Ret.push_back(llvm::json::Object( in toJSONSorted()
262 return Ret; in toJSONSorted()
/netbsd/external/apache2/llvm/dist/llvm/lib/Option/
H A DOptTable.cpp234 std::vector<std::string> Ret; in findByPrefix() local
247 Ret.push_back(S); in findByPrefix()
250 return Ret; in findByPrefix()
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DModule.cpp469 std::vector<StructType *> Ret; in getIdentifiedStructTypes() local
472 Ret.assign(SrcStructTypes.begin(), SrcStructTypes.end()); in getIdentifiedStructTypes()
473 return Ret; in getIdentifiedStructTypes()
/netbsd/external/apache2/llvm/dist/clang/lib/Analysis/
H A DConsumed.cpp512 void VisitReturnStmt(const ReturnStmt *Ret);
876 void ConsumedStmtVisitor::VisitReturnStmt(const ReturnStmt *Ret) { in VisitReturnStmt() argument
880 InfoEntry Entry = findInfo(Ret->getRetValue()); in VisitReturnStmt()
887 Ret->getReturnLoc(), stateToString(ExpectedState), in VisitReturnStmt()
892 StateMap->checkParamsForReturnTypestate(Ret->getBeginLoc(), in VisitReturnStmt()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-link/
H A Dllvm-link.cpp239 std::unique_ptr<Module> Ret = std::move(I->second); in takeModule() local
241 return Ret; in takeModule()
/netbsd/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1085 std::vector<StOtherPiece> Ret; in NormalizedOther() local
1093 Ret.push_back({P.first}); in NormalizedOther()
1098 Ret.push_back({UnknownFlagsHolder}); in NormalizedOther()
1101 if (!Ret.empty()) in NormalizedOther()
1102 Other = std::move(Ret); in NormalizedOther()
1125 uint8_t Ret = 0; in denormalize() local
1127 Ret |= toValue(Val); in denormalize()
1128 return Ret; in denormalize()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp2289 ReturnInst *Ret, in FindPredecessorAutoreleaseWithSafePath() argument
2293 findSingleDependency(NeedsPositiveRetainCount, Arg, BB, Ret, PA)); in FindPredecessorAutoreleaseWithSafePath()
2321 ReturnInst *Ret = dyn_cast<ReturnInst>(&BB.back()); in OptimizeReturns() local
2322 if (!Ret) in OptimizeReturns()
2325 LLVM_DEBUG(dbgs() << "Visiting: " << *Ret << "\n"); in OptimizeReturns()
2327 const Value *Arg = GetRCIdentityRoot(Ret->getOperand(0)); in OptimizeReturns()
2333 FindPredecessorAutoreleaseWithSafePath(Arg, &BB, Ret, PA); in OptimizeReturns()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp1332 const auto *Ret = cast<ReturnInst>(I); in selectRet() local
1334 if (Ret->getNumOperands() == 0) { in selectRet()
1341 if (Ret->getNumOperands() > 1) in selectRet()
1344 Value *RV = Ret->getOperand(0); in selectRet()
1418 case Instruction::Ret: in fastSelectInstruction()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp205 MachineInstr *Ret = nullptr; in getSingleDef() local
209 if (!Ret) in getSingleDef()
210 Ret = &DefMI; in getSingleDef()
211 else if (Ret != &DefMI) in getSingleDef()
214 return Ret; in getSingleDef()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProf.h614 const auto &Ret = BodySamples.find(CallSite);
615 if (Ret == BodySamples.end())
617 return Ret->second.getCallTargets();
/netbsd/external/apache2/llvm/dist/llvm/bindings/python/llvm/tests/
H A Dtest_core.py122 ('', OpCode.Ret)]
/netbsd/external/apache2/llvm/dist/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp255 COFFSymbol *&Ret = SymbolMap[Symbol]; in GetOrCreateCOFFSymbol() local
256 if (!Ret) in GetOrCreateCOFFSymbol()
257 Ret = createSymbol(Symbol->getName()); in GetOrCreateCOFFSymbol()
258 return Ret; in GetOrCreateCOFFSymbol()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1438 SymInfo Ret = {0, (uint64_t)-1LL}; in getSymbolInfo() local
1463 Ret.Address = *SymAddrOrErr; in getSymbolInfo()
1466 Ret.Address = RSec->getAddress(); in getSymbolInfo()
1470 Ret.SectionIndex = RSec->getIndex(); in getSymbolInfo()
1481 Ret.Address += SectionLoadAddress - RSec->getAddress(); in getSymbolInfo()
1484 CacheIt->second = Ret; in getSymbolInfo()
1486 return Ret; in getSymbolInfo()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp1730 auto Ret = InductiveRangeCheck::Range(NewBegin, NewEnd); in IntersectSignedRange() local
1731 if (Ret.isEmpty(SE, /* IsSigned */ true)) in IntersectSignedRange()
1733 return Ret; in IntersectSignedRange()
1759 auto Ret = InductiveRangeCheck::Range(NewBegin, NewEnd); in IntersectUnsignedRange() local
1760 if (Ret.isEmpty(SE, /* IsSigned */ false)) in IntersectUnsignedRange()
1762 return Ret; in IntersectUnsignedRange()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPerfReader.h216 auto Ret = Children.emplace( in getOrCreateChildFrame() local
218 return Ret.first->second.get(); in getOrCreateChildFrame()
/netbsd/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DItaniumDemangle.cpp508 if (const Node *Ret = in getFunctionReturnType() local
510 Ret->print(S); in getFunctionReturnType()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp92 static const ArgNo Ret; member in __anon297581dd0111::StdLibraryFunctionsChecker
128 const bool ValidArg = ArgN == Ret || ArgN < FD->getNumParams(); in checkValidity()
448 QualType T = (ArgN == Ret) in getArgType()
504 assert(VC->getArgNo() != Ret && in ArgConstraint()
553 return ArgN == Ret ? Call.getReturnValue() : Call.getArgSVal(ArgN); in getArgSVal()
609 const StdLibraryFunctionsChecker::ArgNo StdLibraryFunctionsChecker::Ret = member in __anon297581dd0111::StdLibraryFunctionsChecker
1158 return std::make_shared<RangeConstraint>(Ret, Kind, Ranges); in initFunctionSummaries()
1161 return std::make_shared<ComparisonConstraint>(Ret, Op, OtherArgN); in initFunctionSummaries()

12345678910>>...12