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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp437 dbgs() << "Result type " << i << " illegal: ";
686 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) { argument
687 assert(Result.getValueType() ==
690 AnalyzeNewValue(Result);
694 OpIdEntry = getTableId(Result);
695 Result->setFlags(Op->getFlags());
697 DAG.transferDbgValues(Op, Result);
700 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) { argument
701 assert(Result.getValueType() ==
704 AnalyzeNewValue(Result);
711 SetPromotedFloat(SDValue Op, SDValue Result) argument
722 SetScalarizedVector(SDValue Op, SDValue Result) argument
824 SetWidenedVector(SDValue Op, SDValue Result) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h39 unsigned long long &Result);
41 bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result);
44 unsigned long long &Result);
45 bool consumeSignedInteger(StringRef &Str, unsigned Radix, long long &Result);
499 getAsInteger(unsigned Radix, T &Result) const {
504 Result = LLVal;
510 getAsInteger(unsigned Radix, T &Result) const {
518 Result = ULLVal;
533 consumeInteger(unsigned Radix, T &Result) {
538 Result
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h229 data_type Result; local
243 Result = It->second;
246 data_type_builder ResultBuilder(Result);
256 return Result;
262 data_type Result; local
263 data_type_builder ResultBuilder(Result);
286 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatProviders.h64 Optional<size_t> Result; local
66 Result = None;
69 Result = None;
72 Result = std::min<size_t>(99u, Prec);
74 return Result;
380 StringRef Result = Style.slice(1, End);
382 return Result;
H A DFileSystem.h531 bool Result; local
532 return !is_local(Path, Result) && Result;
538 bool Result; local
539 return !is_local(FD, Result) && Result;
568 bool Result; local
569 return !is_directory(Path, Result) && Result;
590 bool Result; local
614 bool Result; local
696 file_size(const Twine &Path, uint64_t &Result) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h212 MemDepResult Result; member in class:llvm::NonLocalDepEntry
216 : BB(bb), Result(result) {}
224 void setResult(const MemDepResult &R) { Result = R; }
226 const MemDepResult &getResult() const { return Result; }
416 SmallVectorImpl<NonLocalDepResult> &Result);
494 SmallVectorImpl<NonLocalDepResult> &Result,
520 using Result = MemoryDependenceResults;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp146 APInt Result = Value;
150 Result ^= cast<ConstantInt>(Op->getOperand(1))->getValue();
153 Result = Result.zext(Op->getType()->getIntegerBitWidth());
156 Result = Result.sext(Op->getType()->getIntegerBitWidth());
162 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp123 std::unique_ptr<Module> Result; local
125 Result = parseIRFile(FN, Err, Context);
127 Result = getLazyIRFileModule(FN, Err, Context, !MaterializeMetadata);
129 if (!Result) {
135 ExitOnErr(Result->materializeMetadata());
136 UpgradeDebugInfo(*Result);
139 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp530 bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo, argument
534 Init *Arg = Result->getArg(AliasOpNo);
541 if (!Result->getArgName(AliasOpNo))
544 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ResultRecord);
562 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ResultRecord);
584 if (Result->getArgName(AliasOpNo))
613 if (Result->getArgName(AliasOpNo))
644 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ADI->getDef());
670 Result = R->getValueAsDag("ResultInst");
675 DefInit *DI = dyn_cast<DefInit>(Result
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp295 const Attr *Result = It->second; local
297 return Result;
805 QualType Result) {
826 diagnoseAndRemoveTypeQualifiers(S, DS, TypeQuals, Result, (unsigned)-1,
1046 QualType Result = QualType(Decl->getTypeForDecl(), 0); local
1049 Result = Context.applyObjCProtocolQualifiers(Result, Protocols,
1054 if (FailOnError) Result = QualType();
1056 if (FailOnError && Result.isNull())
1060 return Result;
804 checkOmittedBlockReturnType(Sema &S, Declarator &declarator, QualType Result) argument
1073 QualType Result = BaseType; local
1105 QualType Result = Context.getObjCObjectType( local
1173 QualType Result = BuildObjCObjectType( local
1295 QualType Result; local
2259 ExprResult Result = CheckPlaceholderExpr(ArraySize); local
2266 ExprResult Result = DefaultLvalueConversion(ArraySize); local
[all...]
H A DSemaStmtAsm.cpp407 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]); local
408 if (Result.isInvalid())
411 Exprs[i] = Result.get();
739 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
748 if (!Result.isUsable()) return Result;
750 Result = CheckPlaceholderExpr(Result.get());
751 if (!Result.isUsable()) return Result;
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp126 std::vector<CloneDetector::CloneGroup> &Result) {
133 for (unsigned i = 0; i < Result.size(); ++i) {
134 for (unsigned j = 0; j < Result.size(); ++j) {
139 if (containsGroup(Result[j], Result[i])) {
150 Result.erase(Result.begin() + *I);
353 std::vector<CloneDetector::CloneGroup> Result; local
403 Result.push_back(NewGroup);
407 Sequences = Result;
125 constrain( std::vector<CloneDetector::CloneGroup> &Result) argument
478 std::vector<CloneDetector::CloneGroup> Result; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp1224 DecodeStatus Result; local
1228 Result = readInstruction16(Bytes, Address, Size, Insn, IsBigEndian);
1229 if (Result == MCDisassembler::Fail)
1237 Result = decodeInstruction(DecoderTableMicroMipsR616, Instr, Insn,
1239 if (Result != MCDisassembler::Fail) {
1241 return Result;
1248 Result = decodeInstruction(DecoderTableMicroMips16, Instr, Insn, Address,
1250 if (Result != MCDisassembler::Fail) {
1252 return Result;
1255 Result
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp141 std::error_code FileSystem::isLocal(const Twine &Path, bool &Result) { argument
261 std::error_code isLocal(const Twine &Path, bool &Result) override;
334 std::error_code RealFileSystem::isLocal(const Twine &Path, bool &Result) { argument
336 return llvm::sys::fs::is_local(adjustPath(Path, Storage), Result);
414 auto Result = (*I)->openFileForRead(Path); local
415 if (Result || Result.getError() != llvm::errc::no_such_file_or_directory)
416 return Result;
435 std::error_code OverlayFileSystem::isLocal(const Twine &Path, bool &Result) { argument
438 return FS->isLocal(Path, Result);
654 std::string Result = variable
980 isLocal(const Twine &Path, bool &Result) argument
1071 isLocal(const Twine &Path, bool &Result) argument
1158 parseScalarString(yaml::Node *N, StringRef &Result, SmallVectorImpl<char> &Storage) argument
1171 parseScalarBool(yaml::Node *N, bool &Result) argument
1470 std::unique_ptr<RedirectingFileSystem::Entry> Result; local
1670 ErrorOr<RedirectingFileSystem::Entry *> Result = local
1714 ErrorOr<RedirectingFileSystem::Entry *> Result = local
1749 ErrorOr<RedirectingFileSystem::Entry *> Result = lookupPath(Path); local
1818 ErrorOr<RedirectingFileSystem::Entry *> Result = lookupPath(Path); local
[all...]
H A DTimer.cpp70 auto Result = std::make_unique<raw_fd_ostream>( local
73 return Result;
120 TimeRecord Result;
125 Result.MemUsed = getMemUsage();
129 Result.MemUsed = getMemUsage();
132 Result.WallTime = Seconds(now.time_since_epoch()).count();
133 Result.UserTime = Seconds(user).count();
134 Result.SystemTime = Seconds(sys).count();
135 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp379 int64_t Result = 0;
382 Result |= static_cast<int64_t>(Bit->getValue()) << i;
385 return IntInit::get(Result);
412 std::string Result = "{ ";
414 if (i) Result += ", ";
416 Result += Bit->getAsString();
418 Result += "*";
420 return Result + " }";
670 std::string Result = "[";
673 Result
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp170 std::unique_ptr<IPDBEnumSymbols> Result(findAllChildren());
171 if (!Result)
174 while (auto Child = Result->getNext()) {
177 Result->reset();
178 return Result;
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1gen_reproducer_main.cpp74 std::string Result; local
75 llvm::raw_string_ostream OS(Result);
186 int Result = 1; local
189 Result = 0;
194 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.cpp54 bool AVRMCExpr::evaluateAsConstant(int64_t &Result) const {
64 Result = evaluateAsInt64(Value.getConstant());
71 bool AVRMCExpr::evaluateAsRelocatableImpl(MCValue &Result, argument
81 Result = MCValue::get(evaluateAsInt64(Value.getConstant()));
92 Result = MCValue::get(Sym, Value.getSymB(), Value.getConstant());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/
H A DLanaiDisassembler.cpp137 DecodeStatus Result = readInstruction32(Bytes, Size, Insn); local
139 if (Result == MCDisassembler::Fail)
143 Result =
146 if (Result != MCDisassembler::Fail) {
149 return Result;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp113 auto Result = EmitNode(OS, Child); local
114 assert(Result.first && Result.second && "node didn't have children?");
117 if (!First) First = Result.first;
118 Last = Result.second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp71 SDNode *Result = nullptr; local
76 Result = CurDAG->getMachineNode(RISCV::LUI, DL, XLenVT, SDImm);
78 Result = CurDAG->getMachineNode(Inst.Opc, DL, XLenVT, SrcReg, SDImm);
81 SrcReg = SDValue(Result, 0);
84 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp108 std::string Result(Number.data(), IntLen);
110 Result.push_back('.');
111 Result += Number.substr(IntLen, 3 - IntLen);
113 Result.push_back(" kMGTPEZY"[(Len - 1) / 3]);
114 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp278 struct Result {}; struct in class:__anon1963::NoOpModuleAnalysis
279 Result run(Module &, ModuleAnalysisManager &) { return Result(); }
298 struct Result {}; struct in class:__anon1963::NoOpCGSCCAnalysis
299 Result run(LazyCallGraph::SCC &, CGSCCAnalysisManager &, LazyCallGraph &G) {
300 return Result();
319 struct Result {}; struct in class:__anon1963::NoOpFunctionAnalysis
320 Result run(Function &, FunctionAnalysisManager &) { return Result(); }
339 struct Result {}; struct in class:__anon1963::NoOpLoopAnalysis
1465 Expected<ParametersT> Result = Parser(Params); variable
1518 MemorySanitizerOptions Result; local
1547 SimplifyCFGOptions Result; local
1601 bool Result = false; local
1620 bool Result = false; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp467 MemoizedMatchResult Result; local
468 Result.Nodes = *Builder;
469 Result.ResultOfMatch = matchesRecursively(Node, Matcher, &Result.Nodes,
473 CachedResult = std::move(Result);
718 MemoizedMatchResult Result; local
719 Result.Nodes = *Builder;
720 Result.ResultOfMatch = matchesAncestorOfRecursively(
721 Node, Ctx, Matcher, &Result.Nodes, MatchMode);
724 CachedResult = std::move(Result);
[all...]

Completed in 566 milliseconds

1234567891011>>