HomeSort by relevance Sort by last modified time
    Searched refs:Twine (Results 451 - 475 of 910) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 94 const Twine getNameWithPrefix(const Twine &Name) const {
99 void SetNamePrefix(const Twine &P) { Prefix = P.str(); }
102 void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
    [all...]
LoopDistribute.cpp 143 VMap, Twine(".ldist") + Twine(Index),
770 *F, L->getStartLoc(), Twine("loop not distributed: ") + Message);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
SROA.cpp 38 #include "llvm/ADT/Twine.h"
135 const Twine getNameWithPrefix(const Twine &Name) const {
140 void SetNamePrefix(const Twine &P) { Prefix = P.str(); }
143 void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
    [all...]
SpeculateAroundPHIs.cpp 652 NewI->setName(Twine(OrigI->getName()) + "." + Twine(PredIdx));
698 Twine(OrigI->getName()) + ".phi");
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 18 #include "llvm/ADT/Twine.h"
495 virtual void setError(const Twine &) = 0;
670 io.setError(llvm::Twine(Result));
690 YamlIO.setError(llvm::Twine(Result));
1008 void setError(const Twine &message) override;
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 19 #include "llvm/ADT/Twine.h"
468 Twine('/').concat(Twine(StringTableEntry)).toVector(Buffer);
661 Twine("symbol '") + A.getName() +
667 Twine("assembler label '") + A.getName() +
687 Twine("symbol '") + B->getName() +
695 Twine("symbol '") + A.getName() +
906 Twine("Missing associated COMDAT section for section ") +
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
YAMLTraits.h 17 #include "llvm/ADT/Twine.h"
550 virtual void setError(const Twine &) = 0;
757 io.setError(llvm::Twine(Result));
777 YamlIO.setError(llvm::Twine(Result));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
AsmParser.cpp 24 #include "llvm/ADT/Twine.h"
221 void Note(SMLoc L, const Twine &Msg, SMRange Range = None) override;
222 bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) override;
223 bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) override;
302 void printMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
735 void AsmParser::Note(SMLoc L, const Twine &Msg, SMRange Range) {
741 bool AsmParser::Warning(SMLoc L, const Twine &Msg, SMRange Range) {
751 bool AsmParser::printError(SMLoc L, const Twine &Msg, SMRange Range) {
811 Out.addExplicitComment(Twine(getTok().getString()));
819 Out.addExplicitComment(Twine(tok->getString()))
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 18 #include "llvm/ADT/Twine.h"
219 void Note(SMLoc L, const Twine &Msg,
221 bool Warning(SMLoc L, const Twine &Msg,
223 bool Error(SMLoc L, const Twine &Msg,
259 bool parseEOL(const Twine &ErrMsg) {
273 bool parseToken(AsmToken::TokenKind T, const Twine &ErrMsg) {
282 bool parseIntToken(int64_t &V, const Twine &ErrMsg) {
342 void printMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
607 void AsmParser::Note(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
612 bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAssembler.cpp 25 #include "llvm/ADT/Twine.h"
347 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
348 "' (at offset '" + Twine(FragmentOffset) + "')");
406 Twine(AF.getValueSize()) +
408 Twine(FragmentSize) + "'");
417 Twine(Count) + " bytes");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
LLParser.h 191 bool Error(LocTy L, const Twine &Msg) const {
194 bool TokError(const Twine &Msg) const {
382 bool ParseType(Type *&Result, const Twine &Msg, bool AllowVoid = false);
386 bool ParseType(Type *&Result, const Twine &Msg, LocTy &Loc,
506 bool ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
  /external/clang/lib/CodeGen/
CodeGenFunction.h 47 class Twine;
145 void InsertHelper(llvm::Instruction *I, const llvm::Twine &Name,
    [all...]
  /external/clang/lib/Edit/
EditedSource.cpp 17 #include "llvm/ADT/Twine.h"
56 StringRef EditedSource::copyString(const Twine &twine) {
58 return copyString(twine.toStringRef(Data));
118 FA.Text = copyString(Twine(text) + FA.Text);
120 FA.Text = copyString(Twine(FA.Text) + text);
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 32 return (llvm::Twine("arm") + Arch.drop_front(5)).str();
332 return error(Twine("opening ") + DM.getBinaryPath() + ": " +
339 return error(Twine("opening ") + DM.getBinaryPath() + ": " +
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
ArchiveWriter.cpp 163 printWithSpacePadding(Out, Twine(Name) + "/", 16);
176 printWithSpacePadding(Out, Twine("#1/") + Twine(NameWithPadding), 16);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
SourceMgr.cpp 21 #include "llvm/ADT/Twine.h"
169 const Twine &Msg,
249 const Twine &Msg, ArrayRef<SMRange> Ranges,
255 const Twine &Msg, ArrayRef<SMRange> Ranges,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
Record.cpp 727 Twine("Undefined reference to record: '") +
736 Twine("Expected type '") +
856 PrintFatalError(Twine("Concatenated Dag operators do not match: '") +
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 29 #include "llvm/ADT/Twine.h"
242 Twine(getDataLayout().getLinkerPrivateGlobalPrefix()) + "CPI" +
243 Twine(getFunctionNumber()) + "_" + Twine(CPID));
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
MachODebugMapParser.cpp 101 void Warning(const Twine &Msg, StringRef File = StringRef()) {
437 Warning("could not find object file symbol for symbol " + Twine(Name));
443 Warning(Twine("failed to insert symbol '") + Name + "' in the debug map.");
MachOUtils.cpp 53 return (llvm::Twine("arm") + Arch.drop_front(5)).str();
352 return error(Twine("opening ") + DM.getBinaryPath() + ": " +
361 return error(Twine("opening ") + DM.getBinaryPath() + ": " +
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llc/
llc.cpp 508 (Twine(argv[0]) + Twine(": ") + Twine(InputFilename)).str();
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Object.h 15 #include "llvm/ADT/Twine.h"
59 SectionBase *getSection(uint32_t Index, Twine ErrMsg);
62 T *getSectionOfType(uint32_t Index, Twine IndexErrMsg, Twine TypeErrMsg);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
xray-graph.cpp 428 Twine("Cannot open instrumentation map '") + GraphInstrMap + "'",
498 Twine("Failed loading input file '") + GraphInput + "'",
511 Twine("Cannot open file '") + GraphOutput + "' for writing.", EC);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/GlobalISel/
PatternMatchTest.cpp 84 StringRef MIRString = (Twine(R"MIR(
98 )MIR") + Twine(MIRFunc) + Twine("...\n"))
  /external/llvm/lib/AsmParser/
LLParser.cpp 174 "use of undefined type '%" + Twine(NT.first) + "'");
195 Twine(ForwardRefValIDs.begin()->first) + "'");
200 Twine(ForwardRefMDNodes.begin()->first) + "'");
485 Twine(VarID) + "'");
    [all...]

Completed in 738 milliseconds

<<11121314151617181920>>