Searched defs:Alloca (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h107 /// Alloca - If this stack object is originated from an Alloca instruction
109 const Value *Alloca; member in struct:llvm::MachineFrameInfo::StackObject
118 isSpillSlot(isSS), MayNeedSP(NSP), Alloca(Val), PreAllocated(false) {}
370 /// getObjectAllocation - Return the underlying Alloca of the specified
375 return Objects[ObjectIdx+NumFixedObjects].Alloca;
498 bool MayNeedSP = false, const Value *Alloca = 0) {
501 Alloca));
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp785 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); local
792 Builder.CreateStore(StartVal, Alloca);
807 NamedValues[VarName] = Alloca;
831 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
833 Builder.CreateStore(NextVar, Alloca);
883 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); local
884 Builder.CreateStore(InitVal, Alloca);
891 NamedValues[VarName] = Alloca;
950 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); local
953 Builder.CreateStore(AI, Alloca);
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp1203 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName()); local
1212 Alloca->setAlignment(AlignmentToUse);
1213 llvm::Value *V = Alloca;
1280 llvm::AllocaInst *Alloca = CreateMemTemp(Ty); local
1282 Alloca->setAlignment(Align.getQuantity());
1283 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
1285 EmitParmDecl(*Arg, Alloca, ArgNo);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml169 | Alloca Constructor in type:Opcode/t
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1952 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI); local
1954 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1956 GV->replaceAllUsesWith(Alloca);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5135 const Value *Alloca = I.getArgOperand(0)->stripPointerCasts(); local
5138 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
5233 // Could not find an Alloca.

Completed in 175 milliseconds