|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp 755 Function *F = getFunction(std::string("unary") + Opcode);
808 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp 755 Function *F = getFunction(std::string("unary") + Opcode);
808 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp 754 Function *F = getFunction(std::string("unary") + Opcode);
807 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp 740 Function *F = getFunction(std::string("unary") + Opcode);
793 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp 764 Function *F = getFunction(std::string("unary") + Opcode);
817 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/Chapter6/toy.cpp 676 Function *F = getFunction(std::string("unary") + Opcode);
706 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/Chapter7/toy.cpp 760 Function *F = getFunction(std::string("unary") + Opcode);
813 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/Chapter8/toy.cpp 759 Function *F = getFunction(std::string("unary") + Opcode);
812 Function *F = getFunction(std::string("binary") + Op);
examples/Kaleidoscope/Chapter9/toy.cpp 915 Function *F = getFunction(std::string("unary") + Opcode);
971 Function *F = getFunction(std::string("binary") + Op);
lib/DebugInfo/DWARF/DWARFDie.cpp 294 File = '"' + File + '"';
lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp 1317 Suffix += itostr(NumLanes) + LaneKind;
lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp 83 printAnnotation(OS, "label" + utostr(ControlFlowCounter) + ':');
114 OS, "label" + utostr(ControlFlowStack.pop_back_val().first) + ':');
124 OS, "label" + utostr(ControlFlowStack.pop_back_val().first) + ':');
134 printAnnotation(OS, "catch" + utostr(EHPadStack.pop_back_val()) + ':');
lib/Transforms/Instrumentation/InstrOrderFile.cpp 112 std::string(F.getName()) + '\n';
tools/clang/include/clang/Basic/JsonSupport.h 78 return '\"' + Str + '\"';
tools/clang/lib/AST/DeclPrinter.cpp 647 Proto = '(' + Proto + ')';
tools/clang/lib/AST/MicrosoftMangle.cpp 2704 mangleArtificialTagType(TTK_Union, "__m" + llvm::utostr(Width) + 'i');
2706 mangleArtificialTagType(TTK_Struct, "__m" + llvm::utostr(Width) + 'd');
tools/clang/lib/AST/Stmt.cpp 725 AsmString += "${" + llvm::utostr(Piece.getOperandNo()) + ':' +
725 AsmString += "${" + llvm::utostr(Piece.getOperandNo()) + ':' +
726 Piece.getModifier() + '}';
tools/clang/lib/CodeGen/CGObjCGNU.cpp 528 + '.' + Ivar->getNameAsString();
1670 + '.' + Ivar->getNameAsString() + '.' + TypeEncoding;
1670 + '.' + Ivar->getNameAsString() + '.' + TypeEncoding;
tools/clang/lib/Driver/InputInfo.h 96 return std::string("\"") + getFilename() + '"';
tools/clang/lib/Driver/ToolChains/Clang.cpp 246 OptionIter = OptionStrings.find(ValBase.str() + 'f');
255 if (OptionStrings[ValBase.str() + 'd']) {
272 OptionStrings[ValBase.str() + 'd'] = true;
tools/clang/lib/Sema/SemaLookup.cpp 5326 return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"');
tools/clang/tools/extra/clang-include-fixer/IncludeFixer.cpp 320 return IsSystem ? '<' + Suggestion + '>' : '"' + Suggestion + '"';
320 return IsSystem ? '<' + Suggestion + '>' : '"' + Suggestion + '"';
tools/clang/tools/extra/clang-move/Move.cpp 864 SM, OldHeaderIncludeRange, '"' + Context->Spec.NewHeader + '"')));
tools/clang/tools/extra/clangd/CodeCompletionStrings.cpp 165 std::to_string(SnippetArg == CursorSnippetArg ? 0 : SnippetArg) + ':';
tools/clang/tools/extra/clangd/unittests/FormattedStringTests.cpp 91 EscapedPunctuation += std::string("\\") + C;
tools/clang/utils/TableGen/ClangAttrEmitter.cpp 3354 return '"' + DiagList.front() + '"';
3357 return '"' + DiagList[0] + " and " + DiagList[1] + '"';
3364 return '"' + Diag + ", and " + *(DiagList.end() - 1) + '"';
tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp 901 RST.push_back(std::string(":placeholder:`") +
tools/lldb/tools/driver/Driver.cpp 465 return '"' + arg + '"';
tools/llvm-ar/llvm-ar.cpp 392 fail(std::string("unknown option ") + Options[i]);
tools/llvm-dwarfdump/Statistics.cpp 441 ChildVarPrefix += toHex(LexicalBlockIndex++) + '.';
tools/llvm-readobj/ELFDumper.cpp 3621 unwrapOrError(this->FileName, Obj->getSectionName(&Sec)).str() + ' ';
utils/TableGen/AsmMatcherEmitter.cpp 2165 auto TiedTupleName = std::string("Tie") + utostr(TiedOp) + '_' +
2166 utostr(SrcOp1) + '_' + utostr(SrcOp2);
2713 Result += "Features.test(" + F->getEnumBitName() + ')';
utils/TableGen/AsmWriterInst.cpp 45 Result += ", \"" + MiModifier + '"';
utils/TableGen/CodeGenDAGPatterns.cpp 1409 Check += '(' + PredList[i]->getCondString() + ')';
utils/TableGen/CodeGenDAGPatterns.h 1081 return IfCond ? C : "!("+C+')';