Home
last modified time | relevance | path

Searched refs:Tied (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstruction.h32 enum { None, EarlyClobber, Tied } Kind = None; enumerator
47 I.Kind = Tied; in getTied()
54 bool isTied() const { return Kind == Tied; } in isTied()
64 if (Kind == Tied && OtherTiedOperand != RHS.OtherTiedOperand)
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp294 RI.Tied = true; in AnalyzeVirtRegInBundle()
300 else if (!RI.Tied && in AnalyzeVirtRegInBundle()
302 RI.Tied = true; in AnalyzeVirtRegInBundle()
H A DInlineSpiller.cpp659 if (RI.Tied) { in reMaterializeFor()
958 unsigned Tied = MI->findTiedOperandIdx(Idx); in foldMemoryOperand() local
960 TiedOps.emplace_back(Tied, Idx); in foldMemoryOperand()
963 TiedOps.emplace_back(Idx, Tied); in foldMemoryOperand()
973 for (auto Tied : TiedOps) in foldMemoryOperand() local
974 MI->tieOperands(Tied.first, Tied.second); in foldMemoryOperand()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h229 bool Tied; member
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h120 bool Tied = true; member
781 bool Tied, unsigned &NumberOfParts);
1733 bool Tied, unsigned &NumberOfParts) override;
H A DCGOpenMPRuntime.cpp160 UntiedTaskActionTy(bool Tied, const VarDecl *PartIDVar, in UntiedTaskActionTy() argument
162 : Untied(!Tied), PartIDVar(PartIDVar), UntiedCodeGen(UntiedCodeGen) {} in UntiedTaskActionTy()
1287 bool Tied, unsigned &NumberOfParts) { in emitTaskOutlinedFunction() argument
1301 CGOpenMPTaskOutlinedRegionInfo::UntiedTaskActionTy Action(Tied, PartIDVar, in emitTaskOutlinedFunction()
1325 if (!Tied) in emitTaskOutlinedFunction()
3730 unsigned Flags = Data.Tied ? TiedFlag : 0; in emitTaskInit()
4556 if (!Data.Tied) { in emitTaskCall()
11964 bool Tied, unsigned &NumberOfParts) { in emitTaskOutlinedFunction() argument
H A DCGStmtOpenMP.cpp4750 if (!Data.Tied) { in EmitOMPTaskBasedDirective()
5032 S, *I, *PartId, *TaskT, S.getDirectiveKind(), CodeGen, Data.Tied, in EmitOMPTaskBasedDirective()
5320 Data.Tied = !S.getSingleClause<OMPUntiedClause>(); in EmitOMPTaskDirective()
7687 Data.Tied = true; in EmitOMPTaskLoopBasedDirective()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp728 int Tied = MCII->get(MI.getOpcode()).getOperandConstraint(VDstIn_Idx, in getInstruction() local
730 if (Tied != -1 && (MI.getNumOperands() <= (unsigned)VDstIn_Idx || in getInstruction()
732 MI.getOperand(VDstIn_Idx).getReg() != MI.getOperand(Tied).getReg())) { in getInstruction()
736 MCOperand::createReg(MI.getOperand(Tied).getReg()), in getInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIPeepholeSDWA.cpp1161 auto Tied = MI.getOperand(TiedIdx); in convertToSDWA() local
1163 SDWAInst.add(Tied); in convertToSDWA()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1227 bool Tied = true, Value *Final = nullptr,
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am62a-main.dtsi1074 <0x00 0x3020a000 0x00 0x1000>, /* vp1: Tied OFF in the SoC */
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1781 bool Tied, Value *Final, Value *IfCondition, in createTask() argument
1826 OI.PostOutlineCB = [this, Ident, Tied, Final, IfCondition, Dependencies, in createTask()
1853 Value *Flags = Builder.getInt32(Tied); in createTask()