Searched refs:Res (Results 201 - 225 of 384) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp355 int64_t Res;
356 if (Val->evaluateAsAbsolute(Res))
357 if (Res < -512 || Res > 511)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCExpr.h163 bool evaluateAsRelocatableImpl(MCValue &Res, const MCAsmLayout *Layout,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp274 std::vector<ProfileSummaryEntry> &Res = PS.getDetailedSummary();
276 TheSummary->NumCutoffEntries = Res.size();
283 for (unsigned I = 0; I < Res.size(); I++)
284 TheSummary->setEntry(I, Res[I]);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.h147 MCInst &Res) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp629 SIScheduleBlocks Res; local
634 Res.Blocks = CurrentBlocks;
635 Res.TopDownIndex2Block = TopDownIndex2Block;
636 Res.TopDownBlock2Index = TopDownBlock2Index;
637 Blocks[BlockVariant] = Res;
638 return Res;
1776 struct SIScheduleBlockResult Res; local
1785 Res.SUs.push_back(SU->NodeNum);
1788 Res.MaxSGPRUsage = Scheduler.getSGPRUsage();
1789 Res
[all...]
H A DAMDGPULibFunc.cpp350 AMDGPULibFunc::Param Res = Leads[0];
354 Res.PtrKind = AMDGPULibFunc::BYVALUE;
359 return Res;
498 StringRef Res = mangledName.substr(0, Len);
500 return Res;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1451 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this))
1452 return Res;
1842 if (Instruction *Res = foldCmpLoadFromIndexedGlobal(GEP, GV, Cmp, C2))
1843 return Res;
3256 if (Instruction *Res = foldCmpLoadFromIndexedGlobal(GEP, GV, I))
3257 return Res;
3691 Value *Res = Builder.CreateExtractValue(Call, 1, "umul.ov"); local
3693 Res = Builder.CreateNot(Res, "umul.not.ov");
3695 return Res;
4782 Value *Res = Builder.CreateExtractValue(Call, 1); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp306 char *Res = ::fgets(Buf, sizeof(Buf), Data->In); local
307 if (!Res) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h284 Error add(std::unique_ptr<InputFile> Obj, ArrayRef<SymbolResolution> Res);
401 ArrayRef<SymbolResolution> Res, unsigned Partition,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h372 virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) { argument
373 return getParser().parsePrimaryExpr(Res, EndLoc);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1988 ExprResult Res = SemaRef.CorrectDelayedTyposInExpr(Init); local
1989 if (!Res.isUsable()) {
1993 Init = Res.get();
3061 /// \param Res We will fill this in if move-initialization was possible.
3063 /// treating the operand as an lvalue, we will leave Res in its original
3071 ExprResult &Res) {
3133 Res = Seq.Perform(S, Entity, Kind, Value);
3158 ExprResult Res = ExprError(); local
3176 true, Res);
3179 if (!Res
3065 TryMoveInitialization(Sema& S, const InitializedEntity &Entity, const VarDecl *NRVOCandidate, QualType ResultType, Expr *&Value, bool ConvertingConstructorsOnly, ExprResult &Res) argument
3389 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate, local
3794 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate, local
4458 CapturedStmt *Res = CapturedStmt::Create( local
[all...]
H A DSemaObjCProperty.cpp198 ObjCPropertyDecl *Res = nullptr; local
201 Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc,
208 if (!Res)
213 if (!Res) {
214 Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD,
220 Res->setLexicalDeclContext(lexicalDC);
224 CheckObjCPropertyAttributes(Res, AtLoc, Attributes,
229 if (Res->getType().getObjCLifetime())
230 checkPropertyDeclWithOwnership(*this, Res);
238 DeclContext::lookup_result R = Super->lookup(Res
1481 ExprResult Res = PerformCopyInitialization( local
1551 ExprResult Res = BuildBinOp(S, PropertyDiagLoc, local
[all...]
H A DSemaLookup.cpp4088 NamedDecl *Res = nullptr;
4092 Res = LabelDecl::Create(Context, CurContext, Loc, II, GnuLabelLoc);
4094 PushOnScopeChains(Res, S, true);
4095 return cast<LabelDecl>(Res);
4099 Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration);
4102 if (Res && Res->getDeclContext() != CurContext)
4103 Res = nullptr;
4104 if (!Res) {
4106 Res
[all...]
H A DSemaExprCXX.cpp802 ExprResult Res = PerformMoveOrCopyInitialization( local
804 if (Res.isInvalid())
806 Ex = Res.get();
3802 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
3804 if (Res.isInvalid())
3806 From = Res.get();
3836 ExprResult Res =
3840 if (Res.isInvalid())
3842 From = Res.get();
4492 LookupResult Res(Sel
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp554 std::string Res(4 * Codepoints.size(), 0); // 4 bytes per codepoint suffice
556 UTF8 *Out8 = reinterpret_cast<UTF8 *>(&Res[0]);
557 ConvertUTF32toUTF8(&In32, In32 + Codepoints.size(), &Out8, Out8 + Res.size(),
559 Res.resize(reinterpret_cast<char *>(Out8) - Res.data());
560 return Res;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp1062 std::vector<std::list<VectorInfo>::iterator> Res(Factor, Candidates.end());
1075 Res[i] = C;
1080 if (Res[i] == Candidates.end())
1084 Res[0] = C0;
1089 if (Res[0] != Candidates.end()) {
1092 InterleavedLoad.splice(InterleavedLoad.end(), Candidates, Res[i]);
H A DExpandMemCmp.cpp509 Value *Res = ConstantInt::get(Type::getInt32Ty(CI->getContext()), 1); local
510 PhiRes->addIncoming(Res, ResBlock.BB);
521 Value *Res = local
527 PhiRes->addIncoming(Res, ResBlock.BB);
775 Value *Res = Expansion.getMemCmpExpansion(); local
778 CI->replaceAllUsesWith(Res);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp74 ExprResult Res = P->getActions().ActOnOpenMPIdExpression( local
76 if (Res.isUsable())
77 Identifiers.push_back(Res.get());
853 auto Res = UsedCtx.try_emplace(CtxSelectorName, Tok.getLocation()); local
854 if (!Res.second) {
859 P.Diag(Res.first->getValue(), diag::note_omp_declare_variant_ctx_used_here)
929 auto Res = UsedCtx.try_emplace(CtxSelectorName, Tok.getLocation()); local
930 if (!Res.second) {
935 P.Diag(Res.first->getValue(), diag::note_omp_declare_variant_ctx_used_here)
1011 auto Res local
1744 DeclGroupPtrTy Res = Actions.ActOnOpenMPThreadprivateDirective( local
1796 DeclGroupPtrTy Res = Actions.ActOnOpenMPAllocateDirective( local
[all...]
H A DParseStmtAsm.cpp863 ExprResult Res =
865 Exprs.push_back(Res.get());
939 ExprResult Res = Actions.CorrectDelayedTyposInExpr(ParseExpression());
941 if (Res.isInvalid()) {
945 Exprs.push_back(Res.get());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp494 int64_t Res; local
495 if (AddrDelta->evaluateAsAbsolute(Res, getAssemblerPtr())) {
497 Res);
506 int64_t Res; local
507 if (AddrDelta->evaluateAsAbsolute(Res, getAssemblerPtr())) {
508 MCDwarfFrameEmitter::EmitAdvanceLoc(*this, Res);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp702 // Res.uw[1] = Rs[bx+1:], Res.uw[0] = Rs[0:bx]
1195 RegisterCell Res(W);
1198 Res[i] = BT::BitValue::self(BT::BitRef(RD.Reg, i));
1201 const BT::BitValue &Sign = Res[BitNum-1];
1203 Res[i] = BT::BitValue::ref(Sign);
1206 Res[i] = BT::BitValue::Zero;
1209 putCell(RD, Res, Outputs);
1236 RegisterCell Res;
1239 Res
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp521 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); local
522 if (Res && Res != SDValue(Node, 0))
523 ReplaceNode(SDValue(Node, 0), Res); local
631 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); local
632 if (Res && Res != SDValue(Node, 0))
633 ReplaceNode(SDValue(Node, 0), Res); local
691 if (SDValue Res = TLI.LowerOperation(RVal, DAG)) {
692 RVal = Res;
702 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp315 MCInst &Res) const {
331 Res.setOpcode(RelaxedOp);
332 Res.addOperand(MCOperand::createImm(0));
333 Res.addOperand(MCOperand::createImm(14));
334 Res.addOperand(MCOperand::createReg(0));
340 Res = Inst;
341 Res.setOpcode(RelaxedOp);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp271 int64_t Res;
272 if (myMCExpr->evaluateAsAbsolute(Res)) {
276 if (Res & ((1 << zeroBits) - 1))
279 if (Res < (1LL << (bits - 1)) && Res >= -(1LL << (bits - 1)))
284 if (Res >= 0)
285 return ((uint64_t)Res < (uint64_t)(1ULL << bits));
289 return (((uint64_t)Res & mask) == mask);
668 int64_t Res; local
674 if (!Subsection->evaluateAsAbsolute(Res))
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp124 long Res = 0; local
133 return Res;
134 Res = Res * 10 + (Ch - '0');
136 return Res * Sign;

Completed in 511 milliseconds

1234567891011>>