Searched refs:NeedPlus (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86IntelInstPrinter.cpp394 bool NeedPlus = false; local
397 NeedPlus = true;
401 if (NeedPlus) O << " + ";
405 NeedPlus = true;
409 if (NeedPlus) O << " + ";
415 if (NeedPlus) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DX86TargetParser.h169 /// "+" will be append in front of each feature if NeedPlus is true.
171 bool NeedPlus = false);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp499 bool NeedPlus = false; local
502 NeedPlus = true;
506 if (NeedPlus) O << " + ";
510 NeedPlus = true;
514 if (NeedPlus) O << " + ";
521 if (NeedPlus) {
/freebsd-current/contrib/llvm-project/llvm/lib/TargetParser/
H A DX86TargetParser.cpp644 bool NeedPlus) {
657 if (Bits[i] && !FeatureInfos[i].getName(NeedPlus).empty())
658 EnabledFeatures.push_back(FeatureInfos[i].getName(NeedPlus));
642 getFeaturesForCPU(StringRef CPU, SmallVectorImpl<StringRef> &EnabledFeatures, bool NeedPlus) argument
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2806 bool NeedPlus = false; local
2813 NeedPlus = true;
2817 OS << (NeedPlus ? " + " : "") << BaseOffs;
2818 NeedPlus = true;
2822 OS << (NeedPlus ? " + " : "") << "Base:";
2824 NeedPlus = true;
2827 OS << (NeedPlus ? " + " : "") << Scale << "*";

Completed in 202 milliseconds