Implement rr::Print support for Subzero

Factored out most of the rr::Print code in LLVMReactor.cpp to
Reactor.cpp, and rewritten in terms of Nucleus. Added a couple of new
Nucleus functions to support this.

Bug: b/149477527
Change-Id: I0a28626f1aa6133a37f9e75abc08544f3de15a45
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/41188
Presubmit-Ready: Antonio Maiorano <amaiorano@google.com>
Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
Tested-by: Antonio Maiorano <amaiorano@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
diff --git a/src/Reactor/Nucleus.hpp b/src/Reactor/Nucleus.hpp
index 513f4fb..4c08ddd 100644
--- a/src/Reactor/Nucleus.hpp
+++ b/src/Reactor/Nucleus.hpp
@@ -21,6 +21,7 @@
 #include <cstdint>
 #include <functional>
 #include <memory>
+#include <string>
 #include <vector>
 
 #ifdef None
@@ -326,8 +327,13 @@
 	static Value *createNullPointer(Type *type);
 	static Value *createConstantVector(const int64_t *constants, Type *type);
 	static Value *createConstantVector(const double *constants, Type *type);
+	static Value *createConstantString(const char *v);
+	static Value *createConstantString(const std::string &v) { return createConstantString(v.c_str()); }
 
+	static Type *getType(Value *value);
+	static Type *getContainedType(Type *vectorType);
 	static Type *getPointerType(Type *elementType);
+	static Type *getPrintfStorageType(Type *valueType);
 };
 
 }  // namespace rr