Home
last modified time | relevance | path

Searched refs:isOutput (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/lib/IR/
H A DInlineAsm.cpp95 Type = isOutput; in Parse()
116 if (Type != isOutput || // Cannot early clobber anything but output. in Parse()
154 if (N >= ConstraintsSoFar.size() || ConstraintsSoFar[N].Type != isOutput|| in Parse()
275 case InlineAsm::isOutput: in verify()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInlineAsm.h94 isOutput, // '=x' enumerator
177 return Type == isInput || (Type == isOutput && isIndirect); in hasArg()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DInlineAsmLowering.cpp67 else if (OpInfo.Type == InlineAsm::isOutput) in update()
323 } else if (OpInfo.Type == InlineAsm::isOutput && !OpInfo.isIndirect) { in lowerInlineAsm()
374 case InlineAsm::isOutput: in lowerInlineAsm()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h118 bool isOutput() const;
130 bool isOrdered() const { return isOutput() || isFlow() || isAnti(); } in isOrdered()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp387 if (DepResult && (DepResult->isOutput() || DepResult->isFlow() || in isSafeToMoveBefore()
/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DARM.cpp1193 bool isOutput = (Constraint[0] == '='); in validateConstraintModifier() local
1206 return (isInOut || isOutput || Size <= 64); in validateConstraintModifier()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp835 if (TC.Type != InlineAsm::isOutput) in isInlineAsmSourceOfDivergence()
H A DSIISelLowering.cpp12915 if (TC.Type == InlineAsm::isOutput) { in requiresUniformRegister()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4065 bool isOutput) { in instrumentAsmArgument()
4073 if (!OpType->isPointerTy() || !isOutput) { in instrumentAsmArgument()
4074 assert(!isOutput); in instrumentAsmArgument()
4101 case InlineAsm::isOutput: in getNumOutputArgs()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp229 bool Dependence::isOutput() const { in isOutput() function in Dependence
602 else if (isOutput()) in dump()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DAsmParser.cpp6032 bool isOutput = (i == 1) && Desc.mayStore(); in parseMSInlineAsm() local
6035 if (isOutput) { in parseMSInlineAsm()
H A DMasmParser.cpp7430 bool isOutput = (i == 1) && Desc.mayStore(); in parseMSInlineAsm() local
7432 if (isOutput) { in parseMSInlineAsm()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp8540 if ((OpInfo.Type == InlineAsm::isOutput || in getRegistersForValue()
8656 else if (OpInfo.Type == InlineAsm::isOutput) in update()
8831 case InlineAsm::isOutput: in visitInlineAsm()
9085 if (OpInfo.Type == InlineAsm::isOutput) { in visitInlineAsm()
H A DTargetLowering.cpp5313 case InlineAsm::isOutput: in ParseConstraints()