Searched defs:CreateTempAlloca (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGAtomic.cpp247 Address CreateTempAlloca() const;
290 Address AtomicInfo::CreateTempAlloca() const { function in class:AtomicInfo
780 Dest = Atomics.emitCastToAtomicIntPointer(Atomics.CreateTempAlloca());
1153 Address Tmp = CreateTempAlloca();
1227 Temp = CreateTempAlloca();
1307 TempAddr = CreateTempAlloca();
1380 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType());
1550 Address ExpectedAddr = CreateTempAlloca();
1556 Address DesiredAddr = CreateTempAlloca();
1589 Address NewAtomicAddr = CreateTempAlloca();
[all...]
H A DCGExpr.cpp58 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
60 Address CodeGenFunction::CreateTempAlloca(llvm::Type *Ty, CharUnits Align, function in class:CodeGenFunction
62 auto Alloca = CreateTempAlloca(Ty, Name);
67 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
69 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty, function in class:CodeGenFunction
82 return CreateTempAlloca(Ty, Align, Name);
95 return CreateTempAlloca(ConvertType(Ty), Align, Name);
105 return CreateTempAlloca(ConvertTypeForMem(Ty), Align, Name);

Completed in 314 milliseconds