Searched refs:allocaI (Results 1 – 2 of 2) sorted by relevance
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/CppBackend/ |
| H A D | CPPBackend.cpp | 1306 const AllocaInst* allocaI = cast<AllocaInst>(I); in printInstruction() local 1308 << getCppName(allocaI->getAllocatedType()) << ", "; in printInstruction() 1309 if (allocaI->isArrayAllocation()) in printInstruction() 1312 printEscapedString(allocaI->getName()); in printInstruction() 1314 if (allocaI->getAlignment()) in printInstruction() 1316 << allocaI->getAlignment() << ");"; in printInstruction()
|
| /minix3/minix/llvm/passes/magic/ |
| H A D | MagicPass.cpp | 2831 Instruction *allocaI = NULL, *dsentryCreateI = NULL, *dsentryDestroyI = NULL; in addMagicStackDsentryFuncCalls() local 2853 allocaI = MagicUtil::getFirstNonAllocaInst(insertCallsInFunc, false); in addMagicStackDsentryFuncCalls() 2857 …t(dsentryStructType, "dsentry_" + (locals[i]->hasName() ? locals[i]->getName() : "anon"), allocaI); in addMagicStackDsentryFuncCalls() 2864 …(IntegerType::get(M.getContext(), 32), 2), "dsentry_ret_addr_value_set", allocaI)); //pass the val… in addMagicStackDsentryFuncCalls() 2865 localDsentryValues.push_back(new AllocaInst(dsentryStructType, "dsentry_ret_addr", allocaI)); in addMagicStackDsentryFuncCalls() 2868 …entry = new AllocaInst(PointerType::get(dsentryStructType, 0), "prev_last_stack_dsentry", allocaI); in addMagicStackDsentryFuncCalls()
|