Add transform to strip entry points from a module

Remove the Generator::GenerateEntryPoint() APIs as they were mostly
unimplemented and not used by anything except the Tint sample app,
which now uses the new transform.

Change-Id: I1ccb303d6c3aa15e622c193d33b753e22bf39a95
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/49160
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: James Price <jrprice@google.com>
diff --git a/include/tint/tint.h b/include/tint/tint.h
index fa40734..4f61086 100644
--- a/include/tint/tint.h
+++ b/include/tint/tint.h
@@ -30,6 +30,7 @@
 #include "src/transform/first_index_offset.h"
 #include "src/transform/manager.h"
 #include "src/transform/renamer.h"
+#include "src/transform/single_entry_point.h"
 #include "src/transform/vertex_pulling.h"
 #include "src/writer/writer.h"
 
diff --git a/samples/main.cc b/samples/main.cc
index 1f5e354..89567e3 100644
--- a/samples/main.cc
+++ b/samples/main.cc
@@ -59,7 +59,6 @@
   Format format = Format::kNone;
 
   bool emit_single_entry_point = false;
-  tint::ast::PipelineStage stage;
   std::string ep_name;
 
   std::vector<std::string> transforms;
@@ -77,7 +76,7 @@
                                    .metal  -> msl
                                    .hlsl   -> hlsl
                                If none matches, then default to SPIR-V assembly.
-  -ep <compute|fragment|vertex> <name>  -- Output single entry point
+  -ep <name>                -- Output single entry point
   --output-file <name>      -- Output file name.  Use "-" for standard output
   -o <name>                 -- Output file name.  Use "-" for standard output
   --transform <name list>   -- Runs transforms, name list is comma separated
@@ -185,19 +184,6 @@
   return Format::kNone;
 }
 
-tint::ast::PipelineStage convert_to_pipeline_stage(const std::string& name) {
-  if (name == "compute") {
-    return tint::ast::PipelineStage::kCompute;
-  }
-  if (name == "fragment") {
-    return tint::ast::PipelineStage::kFragment;
-  }
-  if (name == "vertex") {
-    return tint::ast::PipelineStage::kVertex;
-  }
-  return tint::ast::PipelineStage::kNone;
-}
-
 std::vector<std::string> split_transform_names(std::string list) {
   std::vector<std::string> res;
 
@@ -373,18 +359,11 @@
         return false;
       }
     } else if (arg == "-ep") {
-      if (i + 2 >= args.size()) {
-        std::cerr << "Missing values for -ep" << std::endl;
+      if (i + 1 >= args.size()) {
+        std::cerr << "Missing value for -ep" << std::endl;
         return false;
       }
       i++;
-      opts->stage = convert_to_pipeline_stage(args[i]);
-      if (opts->stage == tint::ast::PipelineStage::kNone) {
-        std::cerr << "Invalid pipeline stage: " << args[i] << std::endl;
-        return false;
-      }
-
-      i++;
       opts->ep_name = args[i];
       opts->emit_single_entry_point = true;
 
@@ -697,6 +676,13 @@
     }
   }
 
+  if (options.emit_single_entry_point) {
+    transform_manager.append(
+        std::make_unique<tint::transform::SingleEntryPoint>());
+    transform_inputs.Add<tint::transform::SingleEntryPoint::Config>(
+        options.ep_name);
+  }
+
   switch (options.format) {
 #if TINT_BUILD_SPV_WRITER
     case Format::kSpirv:
@@ -801,16 +787,9 @@
     return 1;
   }
 
-  if (options.emit_single_entry_point) {
-    if (!writer->GenerateEntryPoint(options.stage, options.ep_name)) {
-      std::cerr << "Failed to generate: " << writer->error() << std::endl;
-      return 1;
-    }
-  } else {
-    if (!writer->Generate()) {
-      std::cerr << "Failed to generate: " << writer->error() << std::endl;
-      return 1;
-    }
+  if (!writer->Generate()) {
+    std::cerr << "Failed to generate: " << writer->error() << std::endl;
+    return 1;
   }
 
 #if TINT_BUILD_SPV_WRITER
diff --git a/src/BUILD.gn b/src/BUILD.gn
index c808dee..941e1e7 100644
--- a/src/BUILD.gn
+++ b/src/BUILD.gn
@@ -519,6 +519,8 @@
     "transform/manager.h",
     "transform/renamer.cc",
     "transform/renamer.h",
+    "transform/single_entry_point.cc",
+    "transform/single_entry_point.h",
     "transform/transform.cc",
     "transform/transform.h",
     "transform/vertex_pulling.cc",
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4ed9729..795091f 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -275,6 +275,8 @@
   transform/manager.h
   transform/renamer.cc
   transform/renamer.h
+  transform/single_entry_point.cc
+  transform/single_entry_point.h
   transform/transform.cc
   transform/transform.h
   transform/vertex_pulling.cc
@@ -763,7 +765,6 @@
       writer/wgsl/generator_impl_constructor_test.cc
       writer/wgsl/generator_impl_continue_test.cc
       writer/wgsl/generator_impl_discard_test.cc
-      writer/wgsl/generator_impl_entry_point_test.cc
       writer/wgsl/generator_impl_fallthrough_test.cc
       writer/wgsl/generator_impl_function_test.cc
       writer/wgsl/generator_impl_global_decl_test.cc
@@ -791,6 +792,7 @@
       transform/emit_vertex_point_size_test.cc
       transform/first_index_offset_test.cc
       transform/renamer_test.cc
+      transform/single_entry_point.cc
       transform/test_helper.h
       transform/vertex_pulling_test.cc
     )
diff --git a/src/transform/single_entry_point.cc b/src/transform/single_entry_point.cc
new file mode 100644
index 0000000..773fa30
--- /dev/null
+++ b/src/transform/single_entry_point.cc
@@ -0,0 +1,105 @@
+// Copyright 2021 The Tint Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "src/transform/single_entry_point.h"
+
+#include <unordered_set>
+#include <utility>
+
+#include "src/program_builder.h"
+#include "src/sem/function.h"
+#include "src/sem/variable.h"
+
+TINT_INSTANTIATE_TYPEINFO(tint::transform::SingleEntryPoint::Config);
+
+namespace tint {
+namespace transform {
+
+SingleEntryPoint::SingleEntryPoint() = default;
+
+SingleEntryPoint::~SingleEntryPoint() = default;
+
+Output SingleEntryPoint::Run(const Program* in, const DataMap& data) {
+  ProgramBuilder out;
+
+  auto* cfg = data.Get<Config>();
+  if (cfg == nullptr) {
+    out.Diagnostics().add_error("missing transform data for SingleEntryPoint");
+    return Output(Program(std::move(out)));
+  }
+
+  // Find the target entry point.
+  ast::Function* entry_point = nullptr;
+  for (auto* f : in->AST().Functions()) {
+    if (!f->IsEntryPoint()) {
+      continue;
+    }
+    if (in->Symbols().NameFor(f->symbol()) == cfg->entry_point_name) {
+      entry_point = f;
+      break;
+    }
+  }
+  if (entry_point == nullptr) {
+    out.Diagnostics().add_error("entry point '" + cfg->entry_point_name +
+                                "' not found");
+    return Output(Program(std::move(out)));
+  }
+
+  CloneContext ctx(&out, in);
+
+  auto* sem = in->Sem().Get(entry_point);
+
+  // Build set of referenced module-scope variables for faster lookups later.
+  std::unordered_set<const ast::Variable*> referenced_vars;
+  for (auto* var : sem->ReferencedModuleVariables()) {
+    referenced_vars.emplace(var->Declaration());
+  }
+
+  // Clone any module-scope variables, types, and functions that are statically
+  // referenced by the target entry point.
+  for (auto* decl : in->AST().GlobalDeclarations()) {
+    if (auto* ty = decl->As<sem::Type>()) {
+      // TODO(jrprice): Strip unused types.
+      out.AST().AddConstructedType(ctx.Clone(ty));
+    } else if (auto* var = decl->As<ast::Variable>()) {
+      if (var->is_const() || referenced_vars.count(var)) {
+        out.AST().AddGlobalVariable(ctx.Clone(var));
+      }
+    } else if (auto* func = decl->As<ast::Function>()) {
+      if (in->Sem().Get(func)->HasAncestorEntryPoint(entry_point->symbol())) {
+        out.AST().AddFunction(ctx.Clone(func));
+      }
+    } else {
+      TINT_UNREACHABLE(out.Diagnostics())
+          << "unhandled global declaration: " << decl->TypeInfo().name;
+      return Output(Program(std::move(out)));
+    }
+  }
+
+  // Clone the entry point.
+  out.AST().AddFunction(ctx.Clone(entry_point));
+
+  return Output(Program(std::move(out)));
+}
+
+SingleEntryPoint::Config::Config(std::string entry_point)
+    : entry_point_name(entry_point) {}
+
+SingleEntryPoint::Config::Config(const Config&) = default;
+SingleEntryPoint::Config::~Config() = default;
+SingleEntryPoint::Config& SingleEntryPoint::Config::operator=(const Config&) =
+    default;
+
+}  // namespace transform
+}  // namespace tint
diff --git a/src/transform/single_entry_point.h b/src/transform/single_entry_point.h
new file mode 100644
index 0000000..c2cd16c
--- /dev/null
+++ b/src/transform/single_entry_point.h
@@ -0,0 +1,67 @@
+// Copyright 2021 The Tint Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#ifndef SRC_TRANSFORM_SINGLE_ENTRY_POINT_H_
+#define SRC_TRANSFORM_SINGLE_ENTRY_POINT_H_
+
+#include <string>
+
+#include "src/transform/transform.h"
+
+namespace tint {
+namespace transform {
+
+/// Strip all but one entry point a module.
+///
+/// All module-scope variables, types, and functions that are not used by the
+/// target entry point will also be removed.
+class SingleEntryPoint : public Transform {
+ public:
+  /// Configuration options for the transform
+  struct Config : public Castable<Config, Data> {
+    /// Constructor
+    /// @param entry_point the name of the entry point to keep
+    explicit Config(std::string entry_point = "");
+
+    /// Copy constructor
+    Config(const Config&);
+
+    /// Destructor
+    ~Config() override;
+
+    /// Assignment operator
+    /// @returns this Config
+    Config& operator=(const Config&);
+
+    /// The name of the entry point to keep.
+    std::string entry_point_name;
+  };
+
+  /// Constructor
+  SingleEntryPoint();
+
+  /// Destructor
+  ~SingleEntryPoint() override;
+
+  /// Runs the transform on `program`, returning the transformation result.
+  /// @param program the source program to transform
+  /// @param data optional extra transform-specific input data
+  /// @returns the transformation result
+  Output Run(const Program* program, const DataMap& data = {}) override;
+};
+
+}  // namespace transform
+}  // namespace tint
+
+#endif  // SRC_TRANSFORM_SINGLE_ENTRY_POINT_H_
diff --git a/src/transform/single_entry_point_test.cc b/src/transform/single_entry_point_test.cc
new file mode 100644
index 0000000..d882620
--- /dev/null
+++ b/src/transform/single_entry_point_test.cc
@@ -0,0 +1,385 @@
+// Copyright 2021 The Tint Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "src/transform/single_entry_point.h"
+
+#include <utility>
+
+#include "src/transform/test_helper.h"
+
+namespace tint {
+namespace transform {
+namespace {
+
+using SingleEntryPointTest = TransformTest;
+
+TEST_F(SingleEntryPointTest, Error_MissingTransformData) {
+  auto* src = "";
+
+  auto* expect = "error: missing transform data for SingleEntryPoint";
+
+  auto got = Run<SingleEntryPoint>(src);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, Error_NoEntryPoints) {
+  auto* src = "";
+
+  auto* expect = "error: entry point 'main' not found";
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>("main");
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, Error_InvalidEntryPoint) {
+  auto* src = R"(
+[[stage(vertex)]]
+fn main() -> [[builtin(position)]] vec4<f32> {
+  return vec4<f32>();
+}
+)";
+
+  auto* expect = "error: entry point '_' not found";
+
+  SingleEntryPoint::Config cfg("_");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, Error_NotAnEntryPoint) {
+  auto* src = R"(
+fn foo() {}
+
+[[stage(fragment)]]
+fn main() {}
+)";
+
+  auto* expect = "error: entry point 'foo' not found";
+
+  SingleEntryPoint::Config cfg("foo");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, SingleEntryPoint) {
+  auto* src = R"(
+[[stage(compute)]]
+fn main() {
+}
+)";
+
+  SingleEntryPoint::Config cfg("main");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(src, str(got));
+}
+
+TEST_F(SingleEntryPointTest, MultipleEntryPoints) {
+  auto* src = R"(
+[[stage(vertex)]]
+fn vert_main() {
+}
+
+[[stage(fragment)]]
+fn frag_main() {
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+}
+
+[[stage(compute)]]
+fn comp_main2() {
+}
+)";
+
+  auto* expect = R"(
+[[stage(compute)]]
+fn comp_main1() {
+}
+)";
+
+  SingleEntryPoint::Config cfg("comp_main1");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, GlobalVariables) {
+  auto* src = R"(
+var<private> a : f32;
+
+var<private> b : f32;
+
+var<private> c : f32;
+
+var<private> d : f32;
+
+[[stage(vertex)]]
+fn vert_main() {
+  a = 0.0;
+}
+
+[[stage(fragment)]]
+fn frag_main() {
+  b = 0.0;
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  c = 0.0;
+}
+
+[[stage(compute)]]
+fn comp_main2() {
+  d = 0.0;
+}
+)";
+
+  auto* expect = R"(
+var<private> c : f32;
+
+[[stage(compute)]]
+fn comp_main1() {
+  c = 0.0;
+}
+)";
+
+  SingleEntryPoint::Config cfg("comp_main1");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, GlobalConstants) {
+  auto* src = R"(
+let a : f32 = 1.0;
+
+let b : f32 = 1.0;
+
+let c : f32 = 1.0;
+
+let d : f32 = 1.0;
+
+[[stage(vertex)]]
+fn vert_main() {
+  let local_a : f32 = a;
+}
+
+[[stage(fragment)]]
+fn frag_main() {
+  let local_b : f32 = b;
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  let local_c : f32 = c;
+}
+
+[[stage(compute)]]
+fn comp_main2() {
+  let local_d : f32 = d;
+}
+)";
+
+  auto* expect = R"(
+let a : f32 = 1.0;
+
+let b : f32 = 1.0;
+
+let c : f32 = 1.0;
+
+let d : f32 = 1.0;
+
+[[stage(compute)]]
+fn comp_main1() {
+  let local_c : f32 = c;
+}
+)";
+
+  SingleEntryPoint::Config cfg("comp_main1");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, CalledFunctions) {
+  auto* src = R"(
+fn inner1() {
+}
+
+fn inner2() {
+}
+
+fn inner_shared() {
+}
+
+fn outer1() {
+  inner1();
+  inner_shared();
+}
+
+fn outer2() {
+  inner2();
+  inner_shared();
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  outer1();
+}
+
+[[stage(compute)]]
+fn comp_main2() {
+  outer2();
+}
+)";
+
+  auto* expect = R"(
+fn inner1() {
+}
+
+fn inner_shared() {
+}
+
+fn outer1() {
+  inner1();
+  inner_shared();
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  outer1();
+}
+)";
+
+  SingleEntryPoint::Config cfg("comp_main1");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+TEST_F(SingleEntryPointTest, GlobalsReferencedByCalledFunctions) {
+  auto* src = R"(
+var<private> inner1_var : f32;
+
+var<private> inner2_var : f32;
+
+var<private> inner_shared_var : f32;
+
+var<private> outer1_var : f32;
+
+var<private> outer2_var : f32;
+
+fn inner1() {
+  inner1_var = 0.0;
+}
+
+fn inner2() {
+  inner2_var = 0.0;
+}
+
+fn inner_shared() {
+  inner_shared_var = 0.0;
+}
+
+fn outer1() {
+  inner1();
+  inner_shared();
+  outer1_var = 0.0;
+}
+
+fn outer2() {
+  inner2();
+  inner_shared();
+  outer2_var = 0.0;
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  outer1();
+}
+
+[[stage(compute)]]
+fn comp_main2() {
+  outer2();
+}
+)";
+
+  auto* expect = R"(
+var<private> inner1_var : f32;
+
+var<private> inner_shared_var : f32;
+
+var<private> outer1_var : f32;
+
+fn inner1() {
+  inner1_var = 0.0;
+}
+
+fn inner_shared() {
+  inner_shared_var = 0.0;
+}
+
+fn outer1() {
+  inner1();
+  inner_shared();
+  outer1_var = 0.0;
+}
+
+[[stage(compute)]]
+fn comp_main1() {
+  outer1();
+}
+)";
+
+  SingleEntryPoint::Config cfg("comp_main1");
+
+  DataMap data;
+  data.Add<SingleEntryPoint::Config>(cfg);
+  auto got = Run<SingleEntryPoint>(src, data);
+
+  EXPECT_EQ(expect, str(got));
+}
+
+}  // namespace
+}  // namespace transform
+}  // namespace tint
diff --git a/src/writer/hlsl/generator.cc b/src/writer/hlsl/generator.cc
index b3538fb..7fdc28a 100644
--- a/src/writer/hlsl/generator.cc
+++ b/src/writer/hlsl/generator.cc
@@ -31,10 +31,6 @@
   return ret;
 }
 
-bool Generator::GenerateEntryPoint(ast::PipelineStage, const std::string&) {
-  return false;
-}
-
 std::string Generator::result() const {
   return out_.str();
 }
diff --git a/src/writer/hlsl/generator.h b/src/writer/hlsl/generator.h
index 68313da..614a62d 100644
--- a/src/writer/hlsl/generator.h
+++ b/src/writer/hlsl/generator.h
@@ -39,13 +39,6 @@
   /// @returns true on successful generation; false otherwise
   bool Generate() override;
 
-  /// Converts a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on succes; false on failure
-  bool GenerateEntryPoint(ast::PipelineStage stage,
-                          const std::string& name) override;
-
   /// @returns the result data
   std::string result() const override;
 
diff --git a/src/writer/msl/generator.cc b/src/writer/msl/generator.cc
index 9fc9159..9f08f56 100644
--- a/src/writer/msl/generator.cc
+++ b/src/writer/msl/generator.cc
@@ -31,10 +31,6 @@
   return ret;
 }
 
-bool Generator::GenerateEntryPoint(ast::PipelineStage, const std::string&) {
-  return false;
-}
-
 std::string Generator::result() const {
   return impl_->result();
 }
diff --git a/src/writer/msl/generator.h b/src/writer/msl/generator.h
index 1a3cb14..3844875 100644
--- a/src/writer/msl/generator.h
+++ b/src/writer/msl/generator.h
@@ -39,13 +39,6 @@
   /// @returns true on successful generation; false otherwise
   bool Generate() override;
 
-  /// Converts a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on succes; false on failure
-  bool GenerateEntryPoint(ast::PipelineStage stage,
-                          const std::string& name) override;
-
   /// @returns the result data
   std::string result() const override;
 
diff --git a/src/writer/spirv/generator.cc b/src/writer/spirv/generator.cc
index 55ef8c3..d000b11 100644
--- a/src/writer/spirv/generator.cc
+++ b/src/writer/spirv/generator.cc
@@ -35,10 +35,6 @@
   return true;
 }
 
-bool Generator::GenerateEntryPoint(ast::PipelineStage, const std::string&) {
-  return false;
-}
-
 }  // namespace spirv
 }  // namespace writer
 }  // namespace tint
diff --git a/src/writer/spirv/generator.h b/src/writer/spirv/generator.h
index 284cf542..b5b1614 100644
--- a/src/writer/spirv/generator.h
+++ b/src/writer/spirv/generator.h
@@ -40,13 +40,6 @@
   /// @returns true on successful generation; false otherwise
   bool Generate() override;
 
-  /// Converts a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on succes; false on failure
-  bool GenerateEntryPoint(ast::PipelineStage stage,
-                          const std::string& name) override;
-
   /// @returns the result data
   const std::vector<uint32_t>& result() const { return writer_->result(); }
 
diff --git a/src/writer/wgsl/generator.cc b/src/writer/wgsl/generator.cc
index c063bc2..6ce05f6 100644
--- a/src/writer/wgsl/generator.cc
+++ b/src/writer/wgsl/generator.cc
@@ -31,15 +31,6 @@
   return ret;
 }
 
-bool Generator::GenerateEntryPoint(ast::PipelineStage stage,
-                                   const std::string& name) {
-  auto ret = impl_->GenerateEntryPoint(stage, name);
-  if (!ret) {
-    error_ = impl_->error();
-  }
-  return ret;
-}
-
 std::string Generator::result() const {
   return impl_->result();
 }
diff --git a/src/writer/wgsl/generator.h b/src/writer/wgsl/generator.h
index af2b03a..6085ecf 100644
--- a/src/writer/wgsl/generator.h
+++ b/src/writer/wgsl/generator.h
@@ -39,13 +39,6 @@
   /// @returns true on successful generation; false otherwise
   bool Generate() override;
 
-  /// Converts a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on succes; false on failure
-  bool GenerateEntryPoint(ast::PipelineStage stage,
-                          const std::string& name) override;
-
   /// @returns the result data
   std::string result() const override;
 
diff --git a/src/writer/wgsl/generator_impl.cc b/src/writer/wgsl/generator_impl.cc
index 509a0fb..2cfbdc1 100644
--- a/src/writer/wgsl/generator_impl.cc
+++ b/src/writer/wgsl/generator_impl.cc
@@ -104,17 +104,6 @@
   return true;
 }
 
-bool GeneratorImpl::GenerateEntryPoint(ast::PipelineStage stage,
-                                       const std::string& name) {
-  auto* func =
-      program_->AST().Functions().Find(program_->Symbols().Get(name), stage);
-  if (func == nullptr) {
-    diagnostics_.add_error("Unable to find requested entry point: " + name);
-    return false;
-  }
-  return Generate(func);
-}
-
 bool GeneratorImpl::EmitConstructedType(const sem::Type* ty) {
   make_indent();
   if (auto* alias = ty->As<sem::Alias>()) {
diff --git a/src/writer/wgsl/generator_impl.h b/src/writer/wgsl/generator_impl.h
index 2d8de45..c028587 100644
--- a/src/writer/wgsl/generator_impl.h
+++ b/src/writer/wgsl/generator_impl.h
@@ -55,12 +55,6 @@
   /// @returns true on successful generation; false otherwise
   bool Generate(const ast::Function* entry);
 
-  /// Generates a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on successful generation; false otherwise
-  bool GenerateEntryPoint(ast::PipelineStage stage, const std::string& name);
-
   /// Handles generating a constructed type
   /// @param ty the constructed to generate
   /// @returns true if the constructed was emitted
diff --git a/src/writer/wgsl/generator_impl_entry_point_test.cc b/src/writer/wgsl/generator_impl_entry_point_test.cc
deleted file mode 100644
index 2ff7ff5..0000000
--- a/src/writer/wgsl/generator_impl_entry_point_test.cc
+++ /dev/null
@@ -1,149 +0,0 @@
-// Copyright 2021 The Tint Authors.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "src/ast/call_statement.h"
-#include "src/ast/stage_decoration.h"
-#include "src/ast/variable_decl_statement.h"
-#include "src/writer/wgsl/test_helper.h"
-
-namespace tint {
-namespace writer {
-namespace wgsl {
-namespace {
-
-using WgslGeneratorImplTest = TestHelper;
-
-TEST_F(WgslGeneratorImplTest, Emit_EntryPoint_UnusedFunction) {
-  Func("func_unused", ast::VariableList{}, ty.void_(), ast::StatementList{},
-       ast::DecorationList{});
-
-  Func("func_used", ast::VariableList{}, ty.void_(), ast::StatementList{},
-       ast::DecorationList{});
-
-  auto* call_func = Call("func_used");
-
-  Func("main", ast::VariableList{}, ty.void_(),
-       ast::StatementList{
-           create<ast::CallStatement>(call_func),
-       },
-       ast::DecorationList{
-           Stage(ast::PipelineStage::kCompute),
-       });
-
-  GeneratorImpl& gen = Build();
-
-  gen.increment_indent();
-
-  ASSERT_TRUE(
-      gen.GenerateEntryPoint(tint::ast::PipelineStage::kCompute, "main"))
-      << gen.error();
-  EXPECT_EQ(gen.result(), R"(  fn func_used() {
-  }
-
-  [[stage(compute)]]
-  fn main() {
-    func_used();
-  }
-)");
-}
-
-TEST_F(WgslGeneratorImplTest, Emit_EntryPoint_UnusedVariable) {
-  Global("global_unused", ty.f32(), ast::StorageClass::kPrivate);
-
-  Global("global_used", ty.f32(), ast::StorageClass::kPrivate);
-
-  Func("main", {}, ty.void_(),
-       {
-           Assign("global_used", 1.f),
-       },
-       {
-           Stage(ast::PipelineStage::kCompute),
-       });
-
-  GeneratorImpl& gen = Build();
-
-  gen.increment_indent();
-
-  ASSERT_TRUE(
-      gen.GenerateEntryPoint(tint::ast::PipelineStage::kCompute, "main"))
-      << gen.error();
-  EXPECT_EQ(gen.result(), R"(  var<private> global_used : f32;
-
-  [[stage(compute)]]
-  fn main() {
-    global_used = 1.0;
-  }
-)");
-}
-
-TEST_F(WgslGeneratorImplTest, Emit_EntryPoint_GlobalsInterleaved) {
-  Global("a0", ty.f32(), ast::StorageClass::kPrivate);
-
-  auto s0 = Structure("S0", {Member("a", ty.i32())});
-
-  Func("func", {}, ty.f32(),
-       {
-           Return("a0"),
-       });
-
-  Global("a1", ty.f32(), ast::StorageClass::kOutput);
-
-  auto s1 = Structure("S1", {Member("a", ty.i32())});
-
-  Func("main", {}, ty.void_(),
-       {
-           Decl(Var("s0", s0, ast::StorageClass::kFunction)),
-           Decl(Var("s1", s1, ast::StorageClass::kFunction)),
-           Assign("a1", Call("func")),
-       },
-       {
-           Stage(ast::PipelineStage::kCompute),
-       });
-
-  GeneratorImpl& gen = Build();
-
-  gen.increment_indent();
-
-  ASSERT_TRUE(
-      gen.GenerateEntryPoint(tint::ast::PipelineStage::kCompute, "main"))
-      << gen.error();
-  EXPECT_EQ(gen.result(), R"(  var<private> a0 : f32;
-
-  struct S0 {
-    a : i32;
-  };
-
-  fn func() -> f32 {
-    return a0;
-  }
-
-  var<out> a1 : f32;
-
-  struct S1 {
-    a : i32;
-  };
-
-  [[stage(compute)]]
-  fn main() {
-    var s0 : S0;
-    var s1 : S1;
-    a1 = func();
-  }
-)");
-}
-
-}  // namespace
-}  // namespace wgsl
-}  // namespace writer
-}  // namespace tint
diff --git a/src/writer/writer.h b/src/writer/writer.h
index 1da5715..3e5737c 100644
--- a/src/writer/writer.h
+++ b/src/writer/writer.h
@@ -34,13 +34,6 @@
   /// @returns true on success; false on failure
   virtual bool Generate() = 0;
 
-  /// Converts a single entry point
-  /// @param stage the pipeline stage
-  /// @param name the entry point name
-  /// @returns true on succes; false on failure
-  virtual bool GenerateEntryPoint(ast::PipelineStage stage,
-                                  const std::string& name) = 0;
-
  protected:
   /// Sets the error string
   /// @param msg the error message
diff --git a/test/BUILD.gn b/test/BUILD.gn
index ab2ae1a..30ace0e 100644
--- a/test/BUILD.gn
+++ b/test/BUILD.gn
@@ -296,6 +296,7 @@
     "../src/transform/emit_vertex_point_size_test.cc",
     "../src/transform/first_index_offset_test.cc",
     "../src/transform/renamer_test.cc",
+    "../src/transform/single_entry_point_test.cc",
     "../src/transform/vertex_pulling_test.cc",
     "../src/utils/command_test.cc",
     "../src/utils/get_or_create_test.cc",
@@ -491,7 +492,6 @@
     "../src/writer/wgsl/generator_impl_constructor_test.cc",
     "../src/writer/wgsl/generator_impl_continue_test.cc",
     "../src/writer/wgsl/generator_impl_discard_test.cc",
-    "../src/writer/wgsl/generator_impl_entry_point_test.cc",
     "../src/writer/wgsl/generator_impl_fallthrough_test.cc",
     "../src/writer/wgsl/generator_impl_function_test.cc",
     "../src/writer/wgsl/generator_impl_global_decl_test.cc",