HomeSort by relevance Sort by last modified time
    Searched defs:AllocaInst (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
Instructions.cpp 819 // AllocaInst Implementation
834 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
843 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
852 AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
861 AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 54 // AllocaInst Class
57 /// AllocaInst - an instruction to allocate memory on the stack
59 class AllocaInst : public UnaryInstruction {
61 AllocaInst *clone_impl() const override;
63 explicit AllocaInst(Type *Ty, Value *ArraySize = nullptr,
66 AllocaInst(Type *Ty, Value *ArraySize,
69 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = nullptr);
70 AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd);
72 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
74 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align
    [all...]

Completed in 396 milliseconds