Searched refs:LocationOps (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SDNodeDbgValue.h | 141 SDDbgOperand *LocationOps; variable 160 LocationOps(Alloc.Allocate<SDDbgOperand>(L.size())), in SDDbgValue() 167 std::copy(L.begin(), L.end(), LocationOps); in SDDbgValue() 186 return ArrayRef<SDDbgOperand>(LocationOps, NumLocationOps); in getLocationOps() 190 return SmallVector<SDDbgOperand>(LocationOps, LocationOps + NumLocationOps); in copyLocationOps()
|
H A D | InstrEmitter.cpp | 757 ArrayRef<SDDbgOperand> LocationOps, in AddDbgValueLocationOps() argument 759 for (const SDDbgOperand &Op : LocationOps) { in AddDbgValueLocationOps() 958 SmallVector<SDDbgOperand, 1> LocationOps(1, SD->getLocationOps()[0]); in EmitDbgValueFromSingleOp() local 959 if (Expr && LocationOps[0].getKind() == SDDbgOperand::CONST) { in EmitDbgValueFromSingleOp() 960 const Value *V = LocationOps[0].getConst(); in EmitDbgValueFromSingleOp() 963 LocationOps[0] = SDDbgOperand::fromConst(C); in EmitDbgValueFromSingleOp() 970 AddDbgValueLocationOps(MIB, II, LocationOps, VRBaseMap); in EmitDbgValueFromSingleOp()
|
H A D | SelectionDAGBuilder.cpp | 1595 SmallVector<SDDbgOperand> LocationOps; in handleDebugValue() local 1601 LocationOps.emplace_back(SDDbgOperand::fromConst(V)); in handleDebugValue() 1608 LocationOps.emplace_back(SDDbgOperand::fromConst(CE->getOperand(0))); in handleDebugValue() 1617 LocationOps.emplace_back(SDDbgOperand::fromFrameIdx(SI->second)); in handleDebugValue() 1645 LocationOps.emplace_back(SDDbgOperand::fromFrameIdx(FISDN->getIndex())); in handleDebugValue() 1648 LocationOps.emplace_back( in handleDebugValue() 1704 LocationOps.emplace_back(SDDbgOperand::fromVReg(Reg)); in handleDebugValue() 1712 assert(!LocationOps.empty()); in handleDebugValue() 1714 DAG.getDbgValueList(Var, Expr, LocationOps, Dependencies, in handleDebugValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 6382 LocationOps = Base.LocationOps; in clone() 6387 LocationOps.clear(); in clear() 6394 SmallVector<Value *, 2> LocationOps; member 6403 auto *It = llvm::find(LocationOps, V); in pushLocation() 6405 if (It != LocationOps.end()) { in pushLocation() 6406 ArgIndex = std::distance(LocationOps.begin(), It); in pushLocation() 6408 ArgIndex = LocationOps.size(); in pushLocation() 6409 LocationOps.push_back(V); in pushLocation() 6635 assert(!LocationOps.empty() && in appendToVectors() 6640 for (const auto &Op : LocationOps) { in appendToVectors() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 8548 SmallDenseSet<Value *> LocationOps(DVI.location_ops().begin(), in fixupDbgValue() local 8550 for (Value *Location : LocationOps) { in fixupDbgValue() 8582 SmallDenseSet<Value *> LocationOps(DVR.location_ops().begin(), in fixupDbgVariableRecord() local 8584 for (Value *Location : LocationOps) { in fixupDbgVariableRecord()
|