Browse Source

fix: fix runtime error

shellmiao 1 tháng trước cách đây
mục cha
commit
fe65768f75
1 tập tin đã thay đổi với 26 bổ sung17 xóa
  1. 26 17
      src/Fusion/Fusion.cpp

+ 26 - 17
src/Fusion/Fusion.cpp

@@ -193,36 +193,45 @@ void Fusion::performCodeFusion(Module &M) {
         ValueToValueMapTy bunkerVMap, targetVMap;
         unsigned argIdx = 1; // 跳过isTarget参数
         
-        // 在克隆基本块之前,先处理所有的alloca指令
+        // 在克隆基本块之前,先处理静态的alloca指令
         IRBuilder<> AllocaBuilder(entryBlock);
         // 收集需要删除的alloca指令和它们的映射
         std::map<AllocaInst*, AllocaInst*> bunkerAllocaReplacements;
         std::map<AllocaInst*, AllocaInst*> targetAllocaReplacements;
-        // 处理bunker函数的alloca并移动到entry块
+
+        // 处理bunker函数的静态alloca并移动到entry块
         for (auto& BB : *bunkerFunc) {
             for (auto& I : BB) {
                 if (AllocaInst* AI = dyn_cast<AllocaInst>(&I)) {
-                    // 在entry块创建新的alloca,保持原始名称
-                    AllocaInst* NewAI = AllocaBuilder.CreateAlloca(
-                        AI->getAllocatedType(),
-                        AI->getArraySize(),
-                        AI->getName());
-                    // 保存新旧alloca的映射关系
-                    bunkerAllocaReplacements[AI] = NewAI;
+                    // 检查是否是静态alloca (数组大小是常量)
+                    if (ConstantInt* CI = dyn_cast<ConstantInt>(AI->getArraySize())) {
+                        // 在entry块创建新的alloca,保持原始名称和对齐信息
+                        AllocaInst* NewAI = AllocaBuilder.CreateAlloca(
+                            AI->getAllocatedType(),
+                            CI,
+                            AI->getName());
+                        // 复制原始的对齐信息
+                        NewAI->setAlignment(MaybeAlign(AI->getAlignment()));
+                        // 保存新旧alloca的映射关系
+                        bunkerAllocaReplacements[AI] = NewAI;
+                    }
                 }
             }
         }
-        // 处理target函数的alloca并移动到entry块
+        // 处理target函数的静态alloca并移动到entry块
         for (auto& BB : *targetFunc) {
             for (auto& I : BB) {
                 if (AllocaInst* AI = dyn_cast<AllocaInst>(&I)) {
-                    // 在entry块创建新的alloca,保持原始名称
-                    AllocaInst* NewAI = AllocaBuilder.CreateAlloca(
-                        AI->getAllocatedType(),
-                        AI->getArraySize(),
-                        AI->getName());
-                    // 保存新旧alloca的映射关系
-                    targetAllocaReplacements[AI] = NewAI;
+                    // 检查是否是静态alloca
+                    if (ConstantInt* CI = dyn_cast<ConstantInt>(AI->getArraySize())) {
+                        AllocaInst* NewAI = AllocaBuilder.CreateAlloca(
+                            AI->getAllocatedType(),
+                            CI,
+                            AI->getName());
+                        // 复制原始的对齐信息
+                        NewAI->setAlignment(MaybeAlign(AI->getAlignment()));
+                        targetAllocaReplacements[AI] = NewAI;
+                    }
                 }
             }
         }