Lines Matching refs:VarName
198 std::string VarName; member in ForExprAST
203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
1005 const std::string &VarName) { in CreateEntryBlockAlloca() argument
1009 VarName.c_str()); in CreateEntryBlockAlloca()
1177 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1198 AllocaInst *OldVal = NamedValues[VarName]; in Codegen()
1199 NamedValues[VarName] = Alloca; in Codegen()
1223 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1243 NamedValues[VarName] = OldVal; in Codegen()
1245 NamedValues.erase(VarName); in Codegen()
1259 const std::string &VarName = VarNames[i].first; in Codegen() local
1275 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1280 OldBindings.push_back(NamedValues[VarName]); in Codegen()
1283 NamedValues[VarName] = Alloca; in Codegen()