summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly/Writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Assembly/Writer.h')
-rw-r--r--include/llvm/Assembly/Writer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 6ce3b92681..76c71a52eb 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -89,4 +89,19 @@ inline ostream &operator<<(ostream &o, const Type *T) {
return o << T->getDescription();
}
+inline ostream &operator<<(ostream &o, const Value &I) {
+ switch (I.getValueType()) {
+ case Value::TypeVal: return o << I.castTypeAsserting();
+ case Value::ConstantVal: WriteToAssembly((const ConstPoolVal*)&I,o);break;
+ case Value::MethodArgumentVal: return o << I.getType() << " "<< I.getName();
+ case Value::InstructionVal:WriteToAssembly((const Instruction *)&I, o);break;
+ case Value::BasicBlockVal: WriteToAssembly((const BasicBlock *)&I, o);break;
+ case Value::MethodVal: WriteToAssembly((const Method *)&I, o);break;
+ case Value::GlobalVal: WriteToAssembly((const GlobalVariable*)&I,o);break;
+ case Value::ModuleVal: WriteToAssembly((const Module *)&I,o); break;
+ default: return o << "<unknown value type: " << I.getValueType() << ">";
+ }
+ return o;
+}
+
#endif