summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 19:46:13 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 19:46:13 +0000
commitc35681b2986163ce5a4d8952c9efb6a2a24e8da5 (patch)
treecb1cc294d092a9743f759fb02fd6b9b56a3cc73b /llvm/include
parentbf43525a2933c3ddb60f00a89e22c52c06bc77d6 (diff)
downloadbcm5719-llvm-c35681b2986163ce5a4d8952c9efb6a2a24e8da5.tar.gz
bcm5719-llvm-c35681b2986163ce5a4d8952c9efb6a2a24e8da5.zip
Generalize mcasmstreamer data emission APIs to take an address space
identifier. There is no way to work around it. llvm-svn: 93896
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/MC/MCStreamer.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/include/llvm/MC/MCStreamer.h b/llvm/include/llvm/MC/MCStreamer.h
index 6e655a59053..5b51916e764 100644
--- a/llvm/include/llvm/MC/MCStreamer.h
+++ b/llvm/include/llvm/MC/MCStreamer.h
@@ -155,7 +155,7 @@ namespace llvm {
///
/// This is used to implement assembler directives such as .byte, .ascii,
/// etc.
- virtual void EmitBytes(StringRef Data) = 0;
+ virtual void EmitBytes(StringRef Data, unsigned AddrSpace) = 0;
/// EmitValue - Emit the expression @param Value into the output as a native
/// integer of the given @param Size bytes.
@@ -166,11 +166,13 @@ namespace llvm {
/// @param Value - The value to emit.
/// @param Size - The size of the integer (in bytes) to emit. This must
/// match a native machine width.
- virtual void EmitValue(const MCExpr *Value, unsigned Size) = 0;
+ virtual void EmitValue(const MCExpr *Value, unsigned Size,
+ unsigned AddrSpace) = 0;
/// EmitFill - Emit NumBytes bytes worth of the value specified by
/// FillValue. This implements directives such as '.space'.
- virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue = 0);
+ virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
+ unsigned AddrSpace);
/// EmitValueToAlignment - Emit some number of copies of @param Value until
OpenPOWER on IntegriCloud