[llvm] [SandboxVec][BottomUpVec] Add cost estimation and tr-accept-or-revert pass (PR #124620)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 7 15:05:36 PST 2025
================
@@ -57,6 +57,24 @@ void Region::add(Instruction *I) {
Scoreboard.add(I);
}
+void Region::setAux(ArrayRef<Instruction *> Aux) {
+ this->Aux = SmallVector<Instruction *>(Aux);
+ auto &LLVMCtx = Ctx.LLVMCtx;
+ for (auto [Idx, I] : enumerate(Aux)) {
+ llvm::ConstantInt *IdxC =
+ llvm::ConstantInt::get(LLVMCtx, llvm::APInt(32, Idx, false));
+ cast<llvm::Instruction>(I->Val)->setMetadata(
+ AuxMDKind, MDNode::get(LLVMCtx, ConstantAsMetadata::get(IdxC)));
+ }
+}
+
+void Region::setAux(uint32_t Idx, Instruction *I) {
+ uint32_t ExpectedSz = Idx + 1;
+ if (Aux.size() < ExpectedSz)
+ Aux.resize(ExpectedSz);
----------------
vporpo wrote:
Yeah, ideally this should initialize the gaps with nullptr. std::vector::resize() does support this, but I don't see it implemented in SmallVector. I initialized this with a for loop.
https://github.com/llvm/llvm-project/pull/124620
More information about the llvm-commits
mailing list