Lines Matching refs:VarName
176 std::string VarName; member in ForExprAST
181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
619 const std::string &VarName) { in CreateEntryBlockAlloca() argument
623 VarName.c_str()); in CreateEntryBlockAlloca()
795 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
816 AllocaInst *OldVal = NamedValues[VarName]; in Codegen()
817 NamedValues[VarName] = Alloca; in Codegen()
841 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
861 NamedValues[VarName] = OldVal; in Codegen()
863 NamedValues.erase(VarName); in Codegen()
877 const std::string &VarName = VarNames[i].first; in Codegen() local
893 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
898 OldBindings.push_back(NamedValues[VarName]); in Codegen()
901 NamedValues[VarName] = Alloca; in Codegen()