Home
last modified time | relevance | path

Searched refs:Operand2 (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/LowLevel/
H A DDWARFCFIProgram.h269 void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2) { in addInstruction() argument
272 Instructions.back().Ops.push_back(Operand2); in addInstruction()
276 void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2, in addInstruction() argument
280 Instructions.back().Ops.push_back(Operand2); in addInstruction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIExpressionOptimizer.cpp241 auto Operand2 = static_cast<dwarf::LocationAtom>(Ops[3].getOp()); in tryFoldCommutativeMath() local
243 if (!Const2 || !operationsAreFoldableAndCommutative(Operand1, Operand2)) in tryFoldCommutativeMath()
268 auto Operand2 = static_cast<dwarf::LocationAtom>(Ops[3].getOp()); in tryFoldCommutativeMathWithArgInBetween() local
272 !operationsAreFoldableAndCommutative(Operand1, Operand2) || in tryFoldCommutativeMathWithArgInBetween()
273 !operationsAreFoldableAndCommutative(Operand2, Operand3)) in tryFoldCommutativeMathWithArgInBetween()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1128 uint64_t Operand2 = DefRangeRegisterRel.Hdr.BasePointerOffset; in visitKnownRecord() local
1135 Symbol->addLocationOperands(LVSmall(Attr), {Operand1, Operand2}); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6463 static bool arebothOperandsNotSNan(SDValue Operand1, SDValue Operand2, in arebothOperandsNotSNan() argument
6465 return DAG.isKnownNeverSNaN(Operand2) && DAG.isKnownNeverSNaN(Operand1); in arebothOperandsNotSNan()
6468 static bool arebothOperandsNotNan(SDValue Operand1, SDValue Operand2, in arebothOperandsNotNan() argument
6470 return DAG.isKnownNeverNaN(Operand2) && DAG.isKnownNeverNaN(Operand1); in arebothOperandsNotNan()
6474 static unsigned getMinMaxOpcodeForFP(SDValue Operand1, SDValue Operand2, in getMinMaxOpcodeForFP() argument
6488 return arebothOperandsNotNan(Operand1, Operand2, DAG) && in getMinMaxOpcodeForFP()
6496 return arebothOperandsNotNan(Operand1, Operand2, DAG) && in getMinMaxOpcodeForFP()
6514 : arebothOperandsNotSNan(Operand1, Operand2, DAG) && in getMinMaxOpcodeForFP()
6523 : arebothOperandsNotSNan(Operand1, Operand2, DAG) && in getMinMaxOpcodeForFP()
6586 SDValue CommonValue, Operand1, Operand2; in foldAndOrOfSETCC() local
[all …]