Home
last modified time | relevance | path

Searched refs:CreateArgumentAllocas (Results 1 – 14 of 14) sorted by relevance

/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp236 void CreateArgumentAllocas(Function *F);
971 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1001 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
Dtoy.cpp243 void CreateArgumentAllocas(Function *F);
1342 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1372 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp246 void CreateArgumentAllocas(Function *F);
1028 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1058 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp221 void CreateArgumentAllocas(Function *F);
953 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
983 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
Dtoy.cpp222 void CreateArgumentAllocas(Function *F);
1240 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1270 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp220 void CreateArgumentAllocas(Function *F);
1200 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1230 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp380 void CreateArgumentAllocas(Function *F);
1243 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1293 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp262 void CreateArgumentAllocas(Function *F);
1420 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1450 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1082 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1112 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1082 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1112 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1082 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1112 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp223 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1083 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1113 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/docs/tutorial/
DLangImpl7.rst408 /// CreateArgumentAllocas - Create an alloca for each argument and register the
410 void PrototypeAST::CreateArgumentAllocas(Function *F) {
DLangImpl8.rst391 argument allocas in ``PrototypeAST::CreateArgumentAllocas``.