HomeSort by relevance Sort by last modified time
    Searched refs:Alloca (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.cpp 81 const AllocaInst *Alloca = MFI->getObjectAllocation(i);
83 const Type *AllocaType = Alloca->getAllocatedType();
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 67 /// variable sized alloca's in the source program are the only source of
108 /// Alloca - If this stack object is originated from an Alloca instruction
110 const AllocaInst *Alloca;
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);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 613 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
763 // var = alloca double
784 // Create an alloca for the variable in the entry block.
785 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
791 // Store the value into the alloca.
792 Builder.CreateStore(StartVal, Alloca);
807 NamedValues[VarName] = Alloca;
829 // Reload, increment, and restore the alloca. This handles the case where
831 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
833 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 202 case Instruction::Alloca: case Instruction::VAArg:
ObjCARCOpts.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CodeGenModule.cpp     [all...]
CodeGenFunction.h 596 /// ReturnValue - The temporary alloca to hold the return value. This is null
642 /// into this alloca.
646 /// write the current selector value into this alloca.
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 483 bool isSS, bool MayNeedSP, const AllocaInst *Alloca) {
488 Alloca));
542 /*Alloca*/ 0));
606 // any calls or alloca's, align to the target's StackAlignment value to
607 // ensure that the callee's frame or the alloca data is suitably aligned;
    [all...]
TargetLoweringBase.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 116 return I->getOpcode() == Instruction::Alloca ||
    [all...]
Instructions.h 110 /// isStaticAlloca - Return true if this alloca is in the entry block of the
117 return (I->getOpcode() == Instruction::Alloca);
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 217 case Alloca: return "alloca";
Instructions.cpp 836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 529 case Instruction::Alloca:
GlobalOpt.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 671 INSTKEYWORD(alloca, Alloca);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 609 case Instruction::Alloca: {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGISel.cpp 101 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 767 if (I.getOpcode() == Instruction::Alloca)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 170 I->getOpcode() == Instruction::Alloca ||
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 169 | Alloca
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]

Completed in 3250 milliseconds

1 2