Home
last modified time | relevance | path

Searched refs:OperandName (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DVarLenCodeEmitterGen.cpp170 const Init *OperandName = DI->getArg(0), *NumBits = DI->getArg(1); in buildRec() local
171 if (!isa<StringInit>(OperandName) || !isa<IntInit>(NumBits)) in buildRec()
180 Segments.push_back({static_cast<unsigned>(NumBitsVal), OperandName, in buildRec()
189 Init *OperandName = DI->getArg(0), *HiBit = DI->getArg(1), in buildRec() local
191 if (!isa<StringInit>(OperandName) || !isa<IntInit>(HiBit) || in buildRec()
213 Init *const NewArgs[] = {OperandName, LoBit, HiBit}; in buildRec()
467 StringRef OperandName; in getInstructionCaseForEncoding() local
470 OperandName = SV->getValue(); in getInstructionCaseForEncoding()
474 OperandName = cast<StringInit>(DV->getArg(0))->getValue(); in getInstructionCaseForEncoding()
478 auto OpIdx = CGI.Operands.ParseOperandName(OperandName); in getInstructionCaseForEncoding()
[all …]
H A DAsmMatcherEmitter.cpp1613 StringRef OperandName; in buildInfo() local
1615 OperandName = Token.substr(2, Token.size() - 3); in buildInfo()
1617 OperandName = Token.substr(1); in buildInfo()
1686 StringRef OperandName, in buildInstructionOperandReference() argument
1694 if (!Operands.hasOperandNamed(OperandName, Idx)) in buildInstructionOperandReference()
1721 Op->OrigSrcOpName = OperandName; in buildInstructionOperandReference()
1738 OperandName = Operands[Idx.first].Name; in buildInstructionOperandReference()
1742 Op->SrcOpName = OperandName; in buildInstructionOperandReference()
1756 CGA.ResultOperands[i].getName() == OperandName) { in buildAliasOperandReference()
1765 Op.SrcOpName = OperandName; in buildAliasOperandReference()
[all …]
H A DInstrInfoEmitter.cpp487 for (const StringRef &OperandName : KV.second) in emitOperandTypeMappings() local
488 OS << " case OpTypes::" << OperandName << ":\n"; in emitOperandTypeMappings()
H A DDecoderEmitter.cpp2123 const std::string &OperandName = Info.Name; in populateInstruction()
2126 errs() << "\t" << OperandName << " (" << OperandDef.getName() << ")\n"; in populateInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DConstraintSystem.cpp148 std::string OperandName; in getVarNamesList() local
150 OperandName = V->getNameOrAsOperand(); in getVarNamesList()
152 OperandName = std::string("%") + V->getName().str(); in getVarNamesList()
153 Names[Index - 1] = OperandName; in getVarNamesList()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeExecMasking.cpp603 [&](unsigned OperandName) -> void { in optimizeVCMPSaveExecSequence() argument
604 if (auto *Mod = TII->getNamedOperand(VCmp, OperandName)) in optimizeVCMPSaveExecSequence()
H A DSIInstrInfo.h1198 MachineOperand *getNamedOperand(MachineInstr &MI, unsigned OperandName) const;
H A DSIInstrInfo.cpp8440 unsigned OperandName) const { in getNamedOperand()
8441 int Idx = AMDGPU::getNamedOperandIdx(MI.getOpcode(), OperandName); in getNamedOperand()