Searched refs:Alloca (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUFrameLowering.cpp81 const AllocaInst *Alloca = MFI->getObjectAllocation(i); local
83 const Type *AllocaType = Alloca->getAllocatedType();
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h108 /// Alloca - If this stack object is originated from an Alloca instruction
110 const AllocaInst *Alloca; member in struct:llvm::MachineFrameInfo::StackObject
119 isSpillSlot(isSS), MayNeedSP(NSP), Alloca(Val), PreAllocated(false) {}
374 /// getObjectAllocation - Return the underlying Alloca of the specified
379 return Objects[ObjectIdx+NumFixedObjects].Alloca;
503 bool MayNeedSP = false, const AllocaInst *Alloca = 0);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp213 case Instruction::Alloca: case Instruction::VAArg:
H A DObjCARCOpts.cpp2764 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2765 for (Value::use_iterator UI = Alloca->use_begin(),
2766 UE = Alloca->use_end(); UI != UE; ++UI) {
2778 for (Value::use_iterator UI = Alloca->use_begin(),
2779 UE = Alloca->use_end(); UI != UE; ) {
2795 Alloca->eraseFromParent();
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp483 bool isSS, bool MayNeedSP, const AllocaInst *Alloca) {
488 Alloca));
542 /*Alloca*/ 0));
482 CreateStackObject(uint64_t Size, unsigned Alignment, bool isSS, bool MayNeedSP, const AllocaInst *Alloca) argument
H A DTargetLoweringBase.cpp1212 case Alloca: return 0;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp1311 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName()); local
1320 Alloca->setAlignment(AlignmentToUse);
1321 llvm::Value *V = Alloca;
1388 llvm::AllocaInst *Alloca = CreateMemTemp(Ty); local
1390 Alloca->setAlignment(Align.getQuantity());
1391 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
1393 EmitParmDecl(*Arg, Alloca, ArgNo);
H A DCGBlocks.cpp1164 llvm::AllocaInst *Alloca = CreateTempAlloca(BlockPointer->getType(), local
1167 Alloca->setAlignment(Align);
1171 Builder.CreateAlignedStore(BlockPointer, Alloca, Align);
1173 BlockPointerDbgLoc = Alloca;
H A DCodeGenModule.cpp3025 if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
3027 Alloca->setMetadata(DeclPtrKind, llvm::MDNode::get(Context, DAddr));
H A DCodeGenFunction.h1709 void InitTempAlloca(llvm::AllocaInst *Alloca, llvm::Value *Value);
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h116 return I->getOpcode() == Instruction::Alloca ||
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DInstruction.cpp217 case Alloca: return "alloca";
H A DInstructions.cpp836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
872 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
881 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRInterpreter.cpp394 // Fall back and allocate space [allocation type Alloca]
464 case Instruction::Alloca:
729 case Instruction::Alloca:
736 log->Printf("getOpcode() returns Alloca, but instruction is not an AllocaInst");
751 // The semantics of Alloca are:
/freebsd-10.0-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp674 INSTKEYWORD(alloca, Alloca);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp609 case Instruction::Alloca: {
2002 case Instruction::Alloca:
2023 // Alloca never returns null, malloc might.
/freebsd-10.0-release/contrib/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp583 case Instruction::Alloca:
H A DGlobalOpt.cpp1962 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI); local
1964 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1966 GV->replaceAllUsesWith(Alloca);
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1029 case Instruction::Alloca:
H A DSelectionDAGISel.cpp105 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
889 case Instruction::Alloca: NumFastIselFailAlloca++; return;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp256 I->getOpcode() == Instruction::Alloca ||
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1369 case Instruction::Alloca:
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1003 if (I.getOpcode() == Instruction::Alloca)
/freebsd-10.0-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1289 case Instruction::Alloca: {
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86FastISel.cpp383 case Instruction::Alloca: {

Completed in 432 milliseconds

12