HomeSort by: relevance | last modified time | path
    Searched defs:Formatter (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineOperand.cpp 798 const MIRFormatter *Formatter = nullptr;
802 Formatter = TII->getMIRFormatter();
804 if (Formatter)
805 Formatter->printImm(OS, *getParent(), OpIdx, getImm());
1148 const MIRFormatter *Formatter = TII->getMIRFormatter();
1154 Formatter->printCustomPseudoSourceValue(OS, MST, *PVal);
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 48 #define DEBUG_TYPE "format-formatter"
1621 class Formatter : public TokenAnalyzer {
1623 Formatter(const Environment &Env, const FormatStyle &Style,
2807 return Formatter(Env, Expanded, Status).process();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIInstrInfo.h 43 mutable std::unique_ptr<AMDGPUMIRFormatter> Formatter;
1115 if (!Formatter.get())
1116 Formatter = std::make_unique<AMDGPUMIRFormatter>();
1117 return Formatter.get();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 1963 /// Return MIR formatter to format/parse MIR operands. Target can override
1964 /// this virtual function and return target specific MIR formatter.
1966 if (!Formatter.get())
1967 Formatter = std::make_unique<MIRFormatter>();
1968 return Formatter.get();
1979 mutable std::unique_ptr<MIRFormatter> Formatter;

Completed in 33 milliseconds