Home
last modified time | relevance | path

Searched refs:Ret (Results 176 – 200 of 280) sorted by relevance

12345678910>>...12

/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp178 case Instruction::Ret: in ComputeInstructionState()
H A DGlobalOpt.cpp2380 bool Ret = false; in hasUsesToReplace() local
2382 Ret = true; in hasUsesToReplace()
2386 return Ret; in hasUsesToReplace()
2397 return Ret; in hasUsesToReplace()
2403 return Ret; in hasUsesToReplace()
/netbsd/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1213 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType()
1214 return Ret; in createIdentifiedStructType()
1218 auto *Ret = StructType::create(Context); in createIdentifiedStructType() local
1219 IdentifiedStructTypes.push_back(Ret); in createIdentifiedStructType()
1220 return Ret; in createIdentifiedStructType()
6000 std::vector<ValueInfo> Ret; in makeRefList() local
6001 Ret.reserve(Record.size()); in makeRefList()
6004 return Ret; in makeRefList()
6011 std::vector<FunctionSummary::EdgeTy> Ret; in makeCallList() local
6012 Ret.reserve(Record.size()); in makeCallList()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp1157 LazyValueInfo::Tristate Ret = in processBlock() local
1160 if (Ret != LazyValueInfo::Unknown) { in processBlock()
1161 unsigned ToRemove = Ret == LazyValueInfo::True ? 1 : 0; in processBlock()
1162 unsigned ToKeep = Ret == LazyValueInfo::True ? 0 : 1; in processBlock()
1180 auto *CI = Ret == LazyValueInfo::True ? in processBlock()
H A DRewriteStatepointsForGC.cpp1321 BasicBlock *Ret = BB; in normalizeForInvokeSafepoint() local
1323 Ret = SplitBlockPredecessors(BB, InvokeParent, "", &DT); in normalizeForInvokeSafepoint()
1327 FoldSingleEntryPHINodes(Ret); in normalizeForInvokeSafepoint()
1328 assert(!isa<PHINode>(Ret->begin()) && in normalizeForInvokeSafepoint()
1333 return Ret; in normalizeForInvokeSafepoint()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1035 const auto *Ret = dyn_cast<ReturnStmt>(SP->getStmt()); in visitNodeInitial() local
1036 if (!Ret) in visitNodeInitial()
1042 SVal V = State->getSVal(Ret, CalleeSFC); in visitNodeInitial()
1049 const Expr *RetE = Ret->getRetValue(); in visitNodeInitial()
1132 PathDiagnosticLocation L(Ret, BRC.getSourceManager(), CalleeSFC); in visitNodeInitial()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc497 int Ret;
503 Ret = mntctl(MCTL_QUERY, BufSize, Buf.get());
504 if (Ret != 0)
510 if (Ret == -1)
516 while (Ret--) {
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp344 const Value *Ret = RI.getReturnValue(); in translateRet() local
345 if (Ret && DL->getTypeStoreSize(Ret->getType()) == 0) in translateRet()
346 Ret = nullptr; in translateRet()
349 if (Ret) in translateRet()
350 VRegs = getOrCreateVRegs(*Ret); in translateRet()
361 return CLI->lowerReturn(MIRBuilder, Ret, VRegs, FuncInfo, SwiftErrorVReg); in translateRet()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstruction.def127 HANDLE_TERM_INST ( 1, Ret , ReturnInst)
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Decho.cpp232 LLVMValueRef Ret = clone_constant_impl(Cst, M); in clone_constant() local
233 check_value_kind(Ret, LLVMGetValueKind(Cst)); in clone_constant()
234 return Ret; in clone_constant()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp159 Instruction *Ret = NewShift; in reassociateShiftAmtsOfTwoSameDirectionShifts() local
162 Ret = CastInst::Create(Instruction::Trunc, NewShift, Sh0->getType()); in reassociateShiftAmtsOfTwoSameDirectionShifts()
165 return Ret; in reassociateShiftAmtsOfTwoSameDirectionShifts()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td2595 ParsedTargetAttr Ret;
2596 if (Features == "default") return Ret;
2614 Ret.BranchProtection = Feature.split('=').second.trim();
2620 if (!Ret.Architecture.empty())
2621 Ret.DuplicateArchitecture = true;
2623 Ret.Architecture = Feature.split("=").second.trim();
2625 if (!Ret.Tune.empty())
2626 Ret.DuplicateTune = true;
2628 Ret.Tune = Feature.split("=").second.trim();
2632 Ret.Features.push_back("+" + Feature.str());
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackProtector.cpp235 case Instruction::Ret: in HasAddressTaken()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1680 const ReturnInst *Ret = cast<ReturnInst>(I); in selectRet() local
1690 if (Ret->getNumOperands() > 0) { in selectRet()
1712 const Value *RV = Ret->getOperand(0); in selectRet()
2068 case Instruction::Ret: in fastSelectInstruction()
/netbsd/external/apache2/llvm/dist/llvm/tools/gold/
H A Dgold-plugin.cpp1148 ld_plugin_status Ret = allSymbolsReadHook(); in all_symbols_read_hook() local
1165 return Ret; in all_symbols_read_hook()
/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/
H A DFrontendAction.cpp1084 auto Ret = WrappedAction->BeginSourceFileAction(CI); in BeginSourceFileAction() local
1087 return Ret; in BeginSourceFileAction()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1740 bool Ret = translateInstruction(Instr, Insn, this); in getInstruction() local
1741 if (!Ret) { in getInstruction()
1759 return (!Ret) ? Success : Fail; in getInstruction()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DOpcodes.td130 def Ret : Opcode {
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1614 const SymbolRef *Ret = State->get<FreeReturnValue>(Sym); in didPreviousFreeFail() local
1615 if (Ret) { in didPreviousFreeFail()
1616 assert(*Ret && "We should not store the null return symbol"); in didPreviousFreeFail()
1618 ConditionTruthVal FreeFailed = CMgr.isNull(State, *Ret); in didPreviousFreeFail()
1619 RetStatusSymbol = *Ret; in didPreviousFreeFail()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp395 llvm::Value *performReturnAdjustment(CodeGenFunction &CGF, Address Ret,
2238 MicrosoftCXXABI::performReturnAdjustment(CodeGenFunction &CGF, Address Ret, in performReturnAdjustment() argument
2241 return Ret.getPointer(); in performReturnAdjustment()
2243 auto OrigTy = Ret.getType(); in performReturnAdjustment()
2244 Ret = CGF.Builder.CreateElementBitCast(Ret, CGF.Int8Ty); in performReturnAdjustment()
2246 llvm::Value *V = Ret.getPointer(); in performReturnAdjustment()
2252 GetVBaseOffsetFromVBPtr(CGF, Ret, RA.Virtual.Microsoft.VBPtrOffset, in performReturnAdjustment()
H A DCGCXXABI.h488 Address Ret,
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp2526 QualType Ret = ImpliedMethod->getReturnType(); in checkFoundationAPI() local
2527 if (Ret->isRecordType() || Ret->isVectorType() || Ret->isExtVectorType()) { in checkFoundationAPI()
2530 << (!Ret->isRecordType() in checkFoundationAPI()
2532 : Ret->isUnionType() ? /*Union*/ 1 : /*Struct*/ 0); in checkFoundationAPI()
2535 << ImpliedMethod->getSelector() << Ret; in checkFoundationAPI()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp1696 const ReturnInst *Ret = cast<ReturnInst>(I); in SelectRet() local
1703 if (Ret->getNumOperands() > 0) { in SelectRet()
1711 const Value *RV = Ret->getOperand(0); in SelectRet()
1977 case Instruction::Ret: in fastSelectInstruction()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp2233 SDNode *Ret = CurDAG->getMachineNode(Opcode.getValue(), DL, MVT::Other, Ops); in tryStoreRetval() local
2235 CurDAG->setNodeMemRefs(cast<MachineSDNode>(Ret), {MemRef}); in tryStoreRetval()
2237 ReplaceNode(N, Ret); in tryStoreRetval()
2336 SDNode *Ret = in tryStoreParam() local
2339 CurDAG->setNodeMemRefs(cast<MachineSDNode>(Ret), {MemRef}); in tryStoreParam()
2341 ReplaceNode(N, Ret); in tryStoreParam()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp837 case Instruction::Ret: in getCFInstrCost()
1327 case Instruction::Ret: in getCFInstrCost()

12345678910>>...12