Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h413 SmallVector<MachineOperand, 0> ConstOps;
436 return DbgOp(ConstOps[ID.getIndex()]);
442 ConstOps.clear();
452 DbgOpID ID(true, ConstOps.size());
454 ConstOps.push_back(MO);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1491 SmallVector<Constant *> ConstOps; in materializeValue() local
1494 ConstOps.push_back(C); in materializeValue()
1504 C = ConstantExpr::get(BC->Opcode, ConstOps[0], ConstOps[1], BC->Flags); in materializeValue()
1508 auto *GV = dyn_cast<GlobalValue>(ConstOps[0]); in materializeValue()
1515 auto *GV = dyn_cast<GlobalValue>(ConstOps[0]); in materializeValue()
1522 Function *Fn = dyn_cast<Function>(ConstOps[0]); in materializeValue()
1563 C = ConstantVector::get(ConstOps); in materializeValue()
1567 C = ConstantExpr::getCompare(BC->Flags, ConstOps[0], ConstOps[1]); in materializeValue()
1575 C = ConstantExpr::getExtractElement(ConstOps[0], ConstOps[1]); in materializeValue()
1578 C = ConstantExpr::getInsertElement(ConstOps[0], ConstOps[1], in materializeValue()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1430 SmallVector<Constant *> ConstOps; in constantFoldOperationIntoSelectOperand() local
1448 ConstOps.push_back(C); in constantFoldOperationIntoSelectOperand()
1451 return ConstantFoldInstOperands(&I, ConstOps, I.getModule()->getDataLayout()); in constantFoldOperationIntoSelectOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4420 SmallVector<Constant *, 8> ConstOps; in simplifyWithOpReplaced() local
4423 ConstOps.push_back(ConstOp); in simplifyWithOpReplaced()
4442 if (!ConstOps[0]->isNotMinSignedValue()) in simplifyWithOpReplaced()
4447 Constant *Res = ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI); in simplifyWithOpReplaced()
4453 return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI); in simplifyWithOpReplaced()