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

1 2

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 66 /// variable sized alloca's in the source program are the only source of
107 /// Alloca - If this stack object is originated from an Alloca instruction
109 const Value *Alloca;
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/
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/clang/lib/CodeGen/
CGCall.cpp     [all...]
CodeGenModule.cpp     [all...]
CodeGenFunction.h 585 /// ReturnValue - The temporary alloca to hold the return value. This is null
627 /// into this alloca.
631 /// write the current selector value into this alloca.
    [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 127 case Alloca: return "alloca";
Instructions.cpp 814 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
823 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
832 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
841 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
850 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
859 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 327 case Instruction::Alloca: case Instruction::VAArg:
    [all...]
Reassociate.cpp 170 I->getOpcode() == Instruction::Alloca ||
    [all...]
  /external/llvm/include/llvm/
InstrTypes.h 118 return I->getOpcode() == Instruction::Alloca ||
    [all...]
Instructions.h 109 /// isStaticAlloca - Return true if this alloca is in the entry block of the
117 return (I->getOpcode() == Instruction::Alloca);
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 518 case Instruction::Alloca:
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 597 case Instruction::Alloca: {
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 633 INSTKEYWORD(alloca, Alloca);
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGISel.cpp 99 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 767 if (I.getOpcode() == Instruction::Alloca)
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 169 | Alloca
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 380 case Instruction::Alloca: {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 784 // Don't walk into other basic blocks unless the object is an alloca from
    [all...]

Completed in 817 milliseconds

1 2