Searched refs:Out (Results 76 - 100 of 341) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-as/
H A Dllvm-as.cpp84 std::unique_ptr<ToolOutputFile> Out(
91 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) {
102 WriteBitcodeToFile(*M, Out->os(), PreserveBitcodeUseListOrder,
107 WriteIndexToFile(*IndexToWrite, Out->os());
111 Out->keep();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp72 OperandVector &Operands, MCStreamer &Out,
89 void emitLoadImm(Register DestReg, int64_t Value, MCStreamer &Out);
95 unsigned SecondOpcode, SMLoc IDLoc, MCStreamer &Out);
98 void emitLoadLocalAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
101 void emitLoadAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
105 void emitLoadTLSIEAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
109 void emitLoadTLSGDAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
113 MCStreamer &Out, bool HasTmpReg);
126 MCStreamer &Out);
810 MCStreamer &Out,
808 MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, OperandVector &Operands, MCStreamer &Out, uint64_t &ErrorInfo, bool MatchingInlineAsm) argument
1642 emitLoadImm(Register DestReg, int64_t Value, MCStreamer &Out) argument
1663 emitAuipcInstPair(MCOperand DestReg, MCOperand TmpReg, const MCExpr *Symbol, RISCVMCExpr::VariantKind VKHi, unsigned SecondOpcode, SMLoc IDLoc, MCStreamer &Out) argument
1691 emitLoadLocalAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) argument
1705 emitLoadAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) argument
1731 emitLoadTLSIEAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) argument
1746 emitLoadTLSGDAddress(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) argument
1760 emitLoadStoreSymbol(MCInst &Inst, unsigned Opcode, SMLoc IDLoc, MCStreamer &Out, bool HasTmpReg) argument
1792 processInstruction(MCInst &Inst, SMLoc IDLoc, OperandVector &Operands, MCStreamer &Out) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp193 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
194 Out << HostID << ' ';
196 Out << getpid();
198 Out << "1";
200 Out.close();
202 if (Out.has_error()) {
207 setError(Out.error(), S);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DDependencyDirectivesSourceMinimizer.cpp32 SmallVectorImpl<char> &Out; member in struct:__anon544::Minimizer
36 Minimizer(SmallVectorImpl<char> &Out, SmallVectorImpl<Token> &Tokens, argument
39 : Out(Out), Tokens(Tokens), Input(Input), Diags(Diags),
69 Tokens.emplace_back(K, Out.size());
73 Out.resize(Tokens.back().Offset);
79 Out.push_back(Byte);
84 Out.append(First, Last);
519 while (Out.back() == ' ')
520 Out
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInterface.h58 // Combines pieces of Data1 & Data2 together into Out.
63 const uint8_t *Data2, size_t Size2, uint8_t *Out,
H A DFuzzerIO.cpp74 FILE *Out = fopen(Path.c_str(), "wb"); local
75 if (!Out) return;
76 fwrite(Data, sizeof(Data[0]), Size, Out);
77 fclose(Out);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/
H A DNewPMDriver.h61 ToolOutputFile *Out, ToolOutputFile *ThinLinkOut,
H A Dopt.cpp629 std::unique_ptr<ToolOutputFile> Out; local
643 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags));
685 if (CheckBitcodeOutputToConsole(Out->os(), !Quiet))
707 return runPassPipeline(argv[0], *M, TM.get(), Out.get(), ThinLinkOut.get(),
759 if (!Out) {
764 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC,
771 Passes.add(createBreakpointPrinter(Out->os()));
834 Passes.add(createRegionPassPrinter(PassInf, Out->os(), Quiet));
837 Passes.add(createLoopPassPrinter(PassInf, Out->os(), Quiet));
840 Passes.add(createFunctionPassPrinter(PassInf, Out
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h566 inline bool fromJSON(const Value &E, std::string &Out) { argument
568 Out = *S;
573 inline bool fromJSON(const Value &E, int &Out) { argument
575 Out = *S;
580 inline bool fromJSON(const Value &E, int64_t &Out) { argument
582 Out = *S;
587 inline bool fromJSON(const Value &E, double &Out) { argument
589 Out = *S;
594 inline bool fromJSON(const Value &E, bool &Out) { argument
596 Out
601 fromJSON(const Value &E, llvm::Optional<T> &Out) argument
612 fromJSON(const Value &E, std::vector<T> &Out) argument
624 fromJSON(const Value &E, std::map<std::string, T> &Out) argument
661 map(StringRef Prop, T &Out) argument
670 map(StringRef Prop, llvm::Optional<T> &Out) argument
[all...]
H A DYAMLTraits.h165 /// static void output(const MyType &Value, void*, llvm::raw_ostream &Out)
168 /// Out << Value;
181 // static void output(const T &Value, void *ctx, llvm::raw_ostream &Out);
189 // static void outputTag(const T &Val, raw_ostream &Out)
201 /// Out << Value;
1615 raw_ostream &Out; member in class:llvm::Output
1823 operator<<(Output &Out, T &Val) { argument
1825 Out.beginDocuments();
1826 if (Out.preflightDocument(0)) {
1827 yamlize(Out, Va
1838 operator <<(Output &Out, T &Val) argument
1853 operator <<(Output &Out, T &Val) argument
[all...]
H A DOnDiskHashTable.h48 /// EmitKeyDataLength(raw_ostream &Out, key_type_ref Key, data_type_ref Data);
49 /// /// Write Key to Out. KeyLen is the length from EmitKeyDataLength.
50 /// static void EmitKey(raw_ostream &Out, key_type_ref Key,
52 /// /// Write Data to Out. DataLen is the length from EmitKeyDataLength.
53 /// static void EmitData(raw_ostream &Out, key_type_ref Key,
142 /// Emit the table to Out, which must not be at offset 0.
143 offset_type Emit(raw_ostream &Out) { argument
145 return Emit(Out, InfoObj);
148 /// Emit the table to Out, which must not be at offset 0.
151 offset_type Emit(raw_ostream &Out, Inf argument
[all...]
H A DCheckedArithmetic.h34 llvm::APInt Out = (ALHS.*Op)(ARHS, Overflow);
37 return Signed ? Out.getSExtValue() : Out.getZExtValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp96 std::string Out; local
97 Out.reserve(5000);
98 raw_string_ostream Ostream(Out);
158 dbgs() << Out;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicType.h66 void printDynamicTypeInfoJson(raw_ostream &Out, ProgramStateRef State,
H A DSMTConstraintManager.h212 void printJson(raw_ostream &Out, ProgramStateRef State, const char *NL = "\n",
216 Indent(Out, Space, IsDot) << "\"constraints\": ";
218 Out << "null," << NL;
223 Out << '[' << NL;
226 Indent(Out, Space, IsDot)
228 I->second->print(Out);
229 Out << "\" }";
232 Out << ',';
233 Out << NL;
237 Indent(Out, Spac
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.h38 void writeSectionInLoadCommand(const Section &Sec, uint8_t *&Out);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DObjCRuntime.cpp26 llvm::raw_string_ostream Out(Result);
27 Out << *this;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DSyncDependenceAnalysis.cpp164 void printDefs(raw_ostream &Out) { argument
165 Out << "Propagator::DefMap {\n";
168 Out << Block->getName() << " : ";
170 Out << "\n";
173 Out << (DefBlock ? DefBlock->getName() : "<null>") << "\n";
176 Out << "}\n";
H A DRegionPass.cpp184 raw_ostream &Out; // raw_ostream to print on. member in class:__anon1990::PrintRegionPass
189 : RegionPass(ID), Banner(B), Out(o) {}
196 Out << Banner;
199 BB->print(Out);
201 Out << "Printing <null> Block";
/freebsd-11-stable/contrib/sqlite3/tea/win/
H A Dnmakehlp.c62 pipeinfo Out = {INVALID_HANDLE_VALUE, '\0'}; variable
212 CreatePipe(&Out.pipe, &h, &sa, 0);
285 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID);
308 return !(strstr(Out.buffer, "D4002") != NULL
310 || strstr(Out.buffer, "D9002") != NULL
312 || strstr(Out.buffer, "D2021") != NULL
347 CreatePipe(&Out.pipe, &h, &sa, 0);
414 pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID);
436 return !(strstr(Out.buffer, "LNK1117") != NULL ||
438 strstr(Out
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp46 void RefVal::print(raw_ostream &Out) const {
48 Out << "Tracked " << T.getAsString() << " | ";
53 Out << "Owned";
55 if (cnt) Out << " (+ " << cnt << ")";
60 Out << "NotOwned";
62 if (cnt) Out << " (+ " << cnt << ")";
67 Out << "ReturnedOwned";
69 if (cnt) Out << " (+ " << cnt << ")";
74 Out << "ReturnedNotOwned";
76 if (cnt) Out << " (
699 SmallVector<ProgramStateRef, 2> Out = local
1455 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp510 if (Optional<RegionVector> Out =
512 return Out;
527 if (auto Out =
529 return Out;
536 if (Optional<RegionVector> Out =
538 return Out;
763 StringRef Out = "."; local
767 Out = "->";
780 return Out;
1054 llvm::raw_svector_ostream Out(Ms
2318 patternMatch(const Expr *Ex, const Expr *ParentEx, raw_ostream &Out, BugReporterContext &BRC, PathSensitiveBugReport &report, const ExplodedNode *N, Optional<bool> &prunable, bool IsSameFieldName) argument
2626 printValue(const Expr *CondVarExpr, raw_ostream &Out, const ExplodedNode *N, bool TookTrue, bool IsAssuming) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp83 void printState(raw_ostream &Out, ProgramStateRef State,
183 void PthreadLockChecker::printState(raw_ostream &Out, ProgramStateRef State, argument
187 Out << Sep << "Mutex states:" << NL;
189 I.first->dumpToStream(Out);
191 Out << ": locked";
193 Out << ": unlocked";
195 Out << ": destroyed";
197 Out << ": not tracked, possibly destroyed";
199 Out << ": unlocked, possibly destroyed";
200 Out << N
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DState.cpp154 llvm::raw_svector_ostream Out(Buffer);
155 F->describe(Out);
156 addDiag(CallLocation, diag::note_constexpr_call_here) << Out.str();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp36 SourceMgr &SM, raw_ostream &Out,
135 MCContext &Ctx, raw_ostream &Out,
196 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer,
34 PrintInsts(const MCDisassembler &DisAsm, const ByteArrayTy &Bytes, SourceMgr &SM, raw_ostream &Out, MCStreamer &Streamer, bool InAtomicBlock, const MCSubtargetInfo &STI) argument
132 disassemble(const Target &T, const std::string &Triple, MCSubtargetInfo &STI, MCStreamer &Streamer, MemoryBuffer &Buffer, SourceMgr &SM, MCContext &Ctx, raw_ostream &Out, const MCTargetOptions &MCOptions) argument

Completed in 333 milliseconds

1234567891011>>