Searched refs:Result (Results 201 - 225 of 528) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp624 const Loop *Result = getRelevantLoop(C->getOperand()); local
625 return RelevantLoops[C] = Result;
628 const Loop *Result = PickMostRelevantLoop( local
630 return RelevantLoops[D] = Result;
1293 Value *Result; local
1295 Result = PN;
1300 Result = PN->getIncomingValueForBlock(LatchBlock);
1305 if (isa<Instruction>(Result) &&
1306 !SE.DT.dominates(cast<Instruction>(Result),
1327 Result
[all...]
H A DScopedNoAliasAA.cpp199 Result.reset(new ScopedNoAliasAAResult(
205 Result.reset();
H A DBasicAliasAnalysis.cpp273 const Value *Result = local
294 Result = CastOp;
307 Result = CastOp;
314 return Result;
1403 AliasResult Result = local
1405 if (Result != MayAlias)
1406 return AliasCache[Locs] = Result;
1415 AliasResult Result = aliasPHI(PN, V1Size, V1AAInfo, V2, V2Size, V2AAInfo); local
1416 if (Result != MayAlias)
1417 return AliasCache[Locs] = Result;
1426 AliasResult Result = local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExpr.cpp1276 ExprResult Result = ParseExpression(); local
1280 if (!Result.isInvalid())
1281 Result = Actions.ActOnNoexceptExpr(KeyLoc, T.getOpenLocation(),
1282 Result.get(), T.getCloseLocation());
1283 return Result;
2161 ExprResult Result(true);
2191 // None of these cases should fall through with an invalid Result
2197 Result = ExprError(Diag(OpenLoc, diag::err_stmtexpr_file_scope));
2217 Result = Actions.ActOnStmtExpr(OpenLoc, Stmt.get(), Tok.getLocation());
2291 Result
2420 ExprResult Result = ParseInitializer(); local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h171 Result
179 Result
/freebsd-11.0-release/contrib/llvm/include/llvm/Object/
H A DELF.h88 SmallVectorImpl<char> &Result) const;
277 SmallVectorImpl<char> &Result) const {
280 Result.append(Name.begin(), Name.end());
294 Result.append(Name.begin(), Name.end());
297 Result.append(1, '/');
298 Result.append(Name.begin(), Name.end());
301 Result.append(1, '/');
302 Result.append(Name.begin(), Name.end());
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h195 std::string &Result) const;
197 // Fills the Result argument with the file and line information
201 DILineInfo &Result) const;
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DStringMap.cpp171 StringMapEntryBase *Result = TheTable[Bucket];
177 return Result;
H A DCrashRecoveryContext.cpp365 bool Result; member in struct:__anon2650::RunSafelyOnThreadInfo
376 Info->Result = Info->CRC->RunSafely(Info->Fn);
385 return Info.Result;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp108 llvm::Value *Result = local
111 return EmitFromInt(CGF, Result, T, ValueType);
170 llvm::Value *Result = local
173 Result = CGF.Builder.CreateBinOp(Op, Result, Args[1]);
175 Result = CGF.Builder.CreateBinOp(llvm::Instruction::Xor, Result,
177 Result = EmitFromInt(CGF, Result, T, ValueType);
178 return RValue::get(Result);
414 Expr::EvalResult Result; local
460 Value *Result = local
469 Value *Result = EmitFAbs(*this, Arg1); local
477 Value *Result = Builder.CreateFRem(Arg1, Arg2, "fmod"); local
526 Value *Result = Builder.CreateCall(F, {ArgValue, ZeroUndef}); local
543 Value *Result = Builder.CreateCall(F, {ArgValue, ZeroUndef}); local
564 Value *Result = Builder.CreateSelect(IsZero, Zero, Tmp, "ffs"); local
581 Value *Result = Builder.CreateAnd(Tmp, llvm::ConstantInt::get(ArgType, 1)); local
596 Value *Result = Builder.CreateCall(F, ArgValue); local
620 Value *Result = local
776 Value *Result = Builder.CreateSelect(IsInf, SignResult, Zero); local
819 PHINode *Result = local
1003 Value *Result = getTargetHooks().decodeReturnAddress(*this, Address); local
1008 Value *Result = getTargetHooks().encodeReturnAddress(*this, Address); local
1062 Value *Result = Builder.CreatePtrToInt(Ptr, IntPtrTy, "extend.cast"); local
1319 AtomicRMWInst *Result = nullptr; local
1371 PHINode *Result = Builder.CreatePHI(Int8Ty, 5, "was_set"); local
1708 llvm::Value *Overflow, *Result; local
1842 auto Result = Builder.CreateAtomicCmpXchg(Destination, Comparand, Exchange, local
2021 llvm::APSInt Result; local
2916 Value *Result = CGF.EmitNeonCall(F, Ops, s); local
3348 Value *Result = EmitNeonCall(F, Ops, NameHint); local
3866 llvm::APSInt Result; local
3926 llvm::APSInt Result; local
4191 llvm::APSInt Result; local
4562 llvm::APSInt Result; local
4576 Value *Result = EmitCommonNeonSISDBuiltinExpr(*this, *Builtin, Ops, E); local
4581 llvm::APSInt Result; local
5118 Value *Result = Builder.CreateCall(F, {Ops[1], Ops[2], Ops[0]}); local
5407 Value *Result = Builder.CreateFMul(Ops[0], Ops[1]); local
6104 Value *Result = local
6157 llvm::APSInt Result; local
6906 llvm::Value *Result = Builder.CreateExtractValue(Tmp, 0); local
[all...]
H A DModuleBuilder.cpp81 GlobalDecl Result; variable
82 if (!Builder->lookupRepresentativeDecl(MangledName, Result))
84 const Decl *D = Result.getCanonicalDecl().getDecl();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DTokenLexer.h200 void PropagateLineStartLeadingSpaceInfo(Token &Result);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaInternal.h119 Result(SemaRef, TypoName, LookupKind),
122 Result.suppressDiagnostics();
214 const LookupResult &getLookupResult() const { return Result; }
323 LookupResult Result; member in class:clang::TypoCorrectionConsumer
H A DOwnership.h65 /// \tparam PtrT Result pointer type. There must be implicit conversion
224 ActionResult Result; local
225 Result.PtrWithInvalid = (uintptr_t)P;
226 return Result;
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DAssumptionCache.h104 typedef AssumptionCache Result; typedef in class:llvm::AssumptionAnalysis
H A DDominanceFrontierImpl.h156 DomSetType *Result = nullptr; local
206 Result = &S;
221 return *Result;
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp55 uint64_t &Result) const {
60 Result = DA.getAddress(&Offset);
65 uint32_t &Result) const {
72 Result = DA.getU32(&Offset);
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp289 SDNode *Result = CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Glue, LHS, local
291 return std::make_pair(true, Result);
312 SDNode *Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second; local
313 return std::make_pair(true, Result);
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp50 uint64_t Result = 0; local
52 uint64_t OldRes = Result;
53 Result *= 10;
54 Result += *Buffer-'0';
55 if (Result < OldRes) { // Uh, oh, overflow detected!!!
60 return Result;
64 uint64_t Result = 0; local
66 uint64_t OldRes = Result;
67 Result *= 16;
68 Result
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp112 std::string Result = Node->getOperationName(G); local
114 raw_string_ostream OS(Result);
117 return Result;
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DPointerSumType.h74 PointerSumType Result; local
78 Result.Value = reinterpret_cast<uintptr_t>(V) | N;
79 return Result;
H A DSparseBitVector.h696 // Result of RHS1 & ~RHS2 is stored into this bitmap.
795 SparseBitVector<ElementSize> Result(*this);
796 Result &= RHS;
797 return (Result == RHS);
864 SparseBitVector<ElementSize> Result(LHS);
865 Result |= RHS;
866 return Result;
873 SparseBitVector<ElementSize> Result(LHS);
874 Result &= RHS;
875 return Result;
[all...]
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantsContext.h244 GetElementPtrConstantExpr *Result = new (IdxList.size() + 1) local
246 Result->SubclassOptionalData = Flags;
247 return Result;
601 ConstantClass *Result = V.create(Ty); local
603 assert(Result->getType() == Ty && "Type specified is not correct!");
604 insert(Result);
606 return Result;
613 ConstantClass *Result = nullptr; local
617 Result = create(Ty, V);
619 Result
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DLocal.cpp1643 auto &Result = BPS[V] = None;
1654 return Result;
1658 return Result;
1660 Result = BitPart(A->Provider, BitWidth);
1665 return Result = None;
1668 Result->Provenance[i] = B->Provenance[i];
1670 Result->Provenance[i] = A->Provenance[i];
1673 return Result;
1682 return Result;
1687 return Result;
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DASTUnit.cpp348 typedef CodeCompletionResult Result; typedef
349 SmallVector<Result, 8> Results;
359 for (Result &R : Results) {
361 case Result::RK_Declaration: {
440 case Result::RK_Keyword:
441 case Result::RK_Pattern:
446 case Result::RK_Macro: {
1248 PreambleFileHash Result; local
1249 Result.Size = Size;
1250 Result
1257 PreambleFileHash Result; local
2057 bool Result = Parse(PCHContainerOps, std::move(OverrideMainBuffer)); local
2187 typedef CodeCompletionResult Result; typedef
2229 typedef CodeCompletionResult Result; typedef
2527 SmallVector<StoredDiagnostic, 4> Result; local
[all...]

Completed in 448 milliseconds

1234567891011>>