Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 1 | //===-- MipsTargetStreamer.h - Mips Target Streamer ------------*- C++ -*--===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 10 | #ifndef LLVM_LIB_TARGET_MIPS_MIPSTARGETSTREAMER_H |
| 11 | #define LLVM_LIB_TARGET_MIPS_MIPSTARGETSTREAMER_H |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 12 | |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 13 | #include "MCTargetDesc/MipsABIFlagsSection.h" |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame^] | 14 | #include "MCTargetDesc/MipsABIInfo.h" |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCELFStreamer.h" |
Daniel Sanders | d97a634 | 2014-08-13 10:07:34 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCRegisterInfo.h" |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCStreamer.h" |
| 18 | |
| 19 | namespace llvm { |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 20 | |
Daniel Sanders | 324ad95 | 2014-07-08 13:13:42 +0000 | [diff] [blame] | 21 | struct MipsABIFlagsSection; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 22 | |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 23 | class MipsTargetStreamer : public MCTargetStreamer { |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 24 | public: |
Rafael Espindola | 24ea09e | 2014-01-26 06:06:37 +0000 | [diff] [blame] | 25 | MipsTargetStreamer(MCStreamer &S); |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 26 | virtual void emitDirectiveSetMicroMips(); |
| 27 | virtual void emitDirectiveSetNoMicroMips(); |
| 28 | virtual void emitDirectiveSetMips16(); |
| 29 | virtual void emitDirectiveSetNoMips16(); |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 30 | |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 31 | virtual void emitDirectiveSetReorder(); |
| 32 | virtual void emitDirectiveSetNoReorder(); |
| 33 | virtual void emitDirectiveSetMacro(); |
| 34 | virtual void emitDirectiveSetNoMacro(); |
Daniel Sanders | 4493443 | 2014-08-07 12:03:36 +0000 | [diff] [blame] | 35 | virtual void emitDirectiveSetMsa(); |
| 36 | virtual void emitDirectiveSetNoMsa(); |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 37 | virtual void emitDirectiveSetAt(); |
| 38 | virtual void emitDirectiveSetNoAt(); |
| 39 | virtual void emitDirectiveEnd(StringRef Name); |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 40 | |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 41 | virtual void emitDirectiveEnt(const MCSymbol &Symbol); |
| 42 | virtual void emitDirectiveAbiCalls(); |
| 43 | virtual void emitDirectiveNaN2008(); |
| 44 | virtual void emitDirectiveNaNLegacy(); |
| 45 | virtual void emitDirectiveOptionPic0(); |
| 46 | virtual void emitDirectiveOptionPic2(); |
Rafael Espindola | 054234f | 2014-01-27 03:53:56 +0000 | [diff] [blame] | 47 | virtual void emitFrame(unsigned StackReg, unsigned StackSize, |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 48 | unsigned ReturnReg); |
| 49 | virtual void emitMask(unsigned CPUBitmask, int CPUTopSavedRegOff); |
| 50 | virtual void emitFMask(unsigned FPUBitmask, int FPUTopSavedRegOff); |
Vladimir Medic | 615b26e | 2014-03-04 09:54:09 +0000 | [diff] [blame] | 51 | |
Toma Tabacu | 85618b3 | 2014-08-19 14:22:52 +0000 | [diff] [blame] | 52 | virtual void emitDirectiveSetArch(StringRef Arch); |
Toma Tabacu | 2664779 | 2014-09-09 12:52:14 +0000 | [diff] [blame] | 53 | virtual void emitDirectiveSetMips0(); |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 54 | virtual void emitDirectiveSetMips1(); |
| 55 | virtual void emitDirectiveSetMips2(); |
| 56 | virtual void emitDirectiveSetMips3(); |
| 57 | virtual void emitDirectiveSetMips4(); |
| 58 | virtual void emitDirectiveSetMips5(); |
| 59 | virtual void emitDirectiveSetMips32(); |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 60 | virtual void emitDirectiveSetMips32R2(); |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 61 | virtual void emitDirectiveSetMips32R6(); |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 62 | virtual void emitDirectiveSetMips64(); |
| 63 | virtual void emitDirectiveSetMips64R2(); |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 64 | virtual void emitDirectiveSetMips64R6(); |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 65 | virtual void emitDirectiveSetDsp(); |
Toma Tabacu | 351b2fe | 2014-09-17 09:01:54 +0000 | [diff] [blame] | 66 | virtual void emitDirectiveSetNoDsp(); |
Toma Tabacu | 9db22db | 2014-09-09 10:15:38 +0000 | [diff] [blame] | 67 | virtual void emitDirectiveSetPop(); |
| 68 | virtual void emitDirectiveSetPush(); |
Matheus Almeida | 525bc4f | 2014-04-30 11:28:42 +0000 | [diff] [blame] | 69 | |
| 70 | // PIC support |
Toma Tabacu | c4c202a | 2014-10-01 14:53:19 +0000 | [diff] [blame] | 71 | virtual void emitDirectiveCpLoad(unsigned RegNo); |
Matheus Almeida | d92a3fa | 2014-05-01 10:24:46 +0000 | [diff] [blame] | 72 | virtual void emitDirectiveCpsetup(unsigned RegNo, int RegOrOffset, |
Rafael Espindola | 60890b8 | 2014-06-23 19:43:40 +0000 | [diff] [blame] | 73 | const MCSymbol &Sym, bool IsReg); |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 74 | |
| 75 | /// Emit a '.module fp=value' directive using the given values. |
| 76 | /// Updates the .MIPS.abiflags section |
| 77 | virtual void emitDirectiveModuleFP(MipsABIFlagsSection::FpABIKind Value, |
| 78 | bool Is32BitABI) { |
| 79 | ABIFlagsSection.setFpABI(Value, Is32BitABI); |
Daniel Sanders | c7dbc63 | 2014-07-08 10:11:38 +0000 | [diff] [blame] | 80 | } |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 81 | |
| 82 | /// Emit a '.module fp=value' directive using the current values of the |
| 83 | /// .MIPS.abiflags section. |
| 84 | void emitDirectiveModuleFP() { |
| 85 | emitDirectiveModuleFP(ABIFlagsSection.getFpABI(), |
| 86 | ABIFlagsSection.Is32BitABI); |
| 87 | } |
| 88 | |
| 89 | virtual void emitDirectiveModuleOddSPReg(bool Enabled, bool IsO32ABI); |
| 90 | virtual void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value){}; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 91 | virtual void emitMipsAbiFlags(){}; |
Daniel Sanders | cdb45fa | 2014-08-14 09:18:14 +0000 | [diff] [blame] | 92 | void forbidModuleDirective() { ModuleDirectiveAllowed = false; } |
| 93 | bool isModuleDirectiveAllowed() { return ModuleDirectiveAllowed; } |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 94 | |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 95 | // This method enables template classes to set internal abi flags |
| 96 | // structure values. |
| 97 | template <class PredicateLibrary> |
| 98 | void updateABIInfo(const PredicateLibrary &P) { |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame^] | 99 | ABI = &P.getABI(); |
Daniel Sanders | c7dbc63 | 2014-07-08 10:11:38 +0000 | [diff] [blame] | 100 | ABIFlagsSection.setAllFromPredicates(P); |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Daniel Sanders | c7dbc63 | 2014-07-08 10:11:38 +0000 | [diff] [blame] | 103 | MipsABIFlagsSection &getABIFlagsSection() { return ABIFlagsSection; } |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame^] | 104 | const MipsABIInfo &getABI() const { |
| 105 | assert(ABI && "ABI hasn't been set!"); |
| 106 | return *ABI; |
| 107 | } |
Daniel Sanders | c7dbc63 | 2014-07-08 10:11:38 +0000 | [diff] [blame] | 108 | |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 109 | protected: |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame^] | 110 | const MipsABIInfo *ABI; |
Daniel Sanders | c7dbc63 | 2014-07-08 10:11:38 +0000 | [diff] [blame] | 111 | MipsABIFlagsSection ABIFlagsSection; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 112 | |
Daniel Sanders | d97a634 | 2014-08-13 10:07:34 +0000 | [diff] [blame] | 113 | bool GPRInfoSet; |
| 114 | unsigned GPRBitMask; |
| 115 | int GPROffset; |
| 116 | |
| 117 | bool FPRInfoSet; |
| 118 | unsigned FPRBitMask; |
| 119 | int FPROffset; |
| 120 | |
| 121 | bool FrameInfoSet; |
| 122 | int FrameOffset; |
| 123 | unsigned FrameReg; |
| 124 | unsigned ReturnReg; |
| 125 | |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 126 | private: |
Daniel Sanders | cdb45fa | 2014-08-14 09:18:14 +0000 | [diff] [blame] | 127 | bool ModuleDirectiveAllowed; |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 128 | }; |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 129 | |
| 130 | // This part is for ascii assembly output |
| 131 | class MipsTargetAsmStreamer : public MipsTargetStreamer { |
Jack Carter | 6ef6cc5 | 2013-11-19 20:53:28 +0000 | [diff] [blame] | 132 | formatted_raw_ostream &OS; |
| 133 | |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 134 | public: |
Rafael Espindola | 24ea09e | 2014-01-26 06:06:37 +0000 | [diff] [blame] | 135 | MipsTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS); |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 136 | void emitDirectiveSetMicroMips() override; |
| 137 | void emitDirectiveSetNoMicroMips() override; |
| 138 | void emitDirectiveSetMips16() override; |
| 139 | void emitDirectiveSetNoMips16() override; |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 140 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 141 | void emitDirectiveSetReorder() override; |
| 142 | void emitDirectiveSetNoReorder() override; |
| 143 | void emitDirectiveSetMacro() override; |
| 144 | void emitDirectiveSetNoMacro() override; |
Daniel Sanders | 4493443 | 2014-08-07 12:03:36 +0000 | [diff] [blame] | 145 | void emitDirectiveSetMsa() override; |
| 146 | void emitDirectiveSetNoMsa() override; |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 147 | void emitDirectiveSetAt() override; |
| 148 | void emitDirectiveSetNoAt() override; |
| 149 | void emitDirectiveEnd(StringRef Name) override; |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 150 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 151 | void emitDirectiveEnt(const MCSymbol &Symbol) override; |
| 152 | void emitDirectiveAbiCalls() override; |
| 153 | void emitDirectiveNaN2008() override; |
| 154 | void emitDirectiveNaNLegacy() override; |
| 155 | void emitDirectiveOptionPic0() override; |
| 156 | void emitDirectiveOptionPic2() override; |
| 157 | void emitFrame(unsigned StackReg, unsigned StackSize, |
| 158 | unsigned ReturnReg) override; |
| 159 | void emitMask(unsigned CPUBitmask, int CPUTopSavedRegOff) override; |
| 160 | void emitFMask(unsigned FPUBitmask, int FPUTopSavedRegOff) override; |
Vladimir Medic | 615b26e | 2014-03-04 09:54:09 +0000 | [diff] [blame] | 161 | |
Toma Tabacu | 85618b3 | 2014-08-19 14:22:52 +0000 | [diff] [blame] | 162 | void emitDirectiveSetArch(StringRef Arch) override; |
Toma Tabacu | 2664779 | 2014-09-09 12:52:14 +0000 | [diff] [blame] | 163 | void emitDirectiveSetMips0() override; |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 164 | void emitDirectiveSetMips1() override; |
| 165 | void emitDirectiveSetMips2() override; |
| 166 | void emitDirectiveSetMips3() override; |
| 167 | void emitDirectiveSetMips4() override; |
| 168 | void emitDirectiveSetMips5() override; |
| 169 | void emitDirectiveSetMips32() override; |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 170 | void emitDirectiveSetMips32R2() override; |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 171 | void emitDirectiveSetMips32R6() override; |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 172 | void emitDirectiveSetMips64() override; |
| 173 | void emitDirectiveSetMips64R2() override; |
Daniel Sanders | f0df221 | 2014-08-04 12:20:00 +0000 | [diff] [blame] | 174 | void emitDirectiveSetMips64R6() override; |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 175 | void emitDirectiveSetDsp() override; |
Toma Tabacu | 351b2fe | 2014-09-17 09:01:54 +0000 | [diff] [blame] | 176 | void emitDirectiveSetNoDsp() override; |
Toma Tabacu | 9db22db | 2014-09-09 10:15:38 +0000 | [diff] [blame] | 177 | void emitDirectiveSetPop() override; |
| 178 | void emitDirectiveSetPush() override; |
Matheus Almeida | 525bc4f | 2014-04-30 11:28:42 +0000 | [diff] [blame] | 179 | |
| 180 | // PIC support |
Toma Tabacu | c4c202a | 2014-10-01 14:53:19 +0000 | [diff] [blame] | 181 | void emitDirectiveCpLoad(unsigned RegNo) override; |
Matheus Almeida | d92a3fa | 2014-05-01 10:24:46 +0000 | [diff] [blame] | 182 | void emitDirectiveCpsetup(unsigned RegNo, int RegOrOffset, |
| 183 | const MCSymbol &Sym, bool IsReg) override; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 184 | |
| 185 | // ABI Flags |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 186 | void emitDirectiveModuleFP(MipsABIFlagsSection::FpABIKind Value, |
| 187 | bool Is32BitABI) override; |
| 188 | void emitDirectiveModuleOddSPReg(bool Enabled, bool IsO32ABI) override; |
| 189 | void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value) override; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 190 | void emitMipsAbiFlags() override; |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 191 | }; |
| 192 | |
| 193 | // This part is for ELF object output |
| 194 | class MipsTargetELFStreamer : public MipsTargetStreamer { |
Rafael Espindola | 6d5f7ce | 2014-01-14 04:25:13 +0000 | [diff] [blame] | 195 | bool MicroMipsEnabled; |
Rafael Espindola | 972e71a | 2014-01-31 23:10:26 +0000 | [diff] [blame] | 196 | const MCSubtargetInfo &STI; |
Matheus Almeida | f79b281 | 2014-03-26 13:40:29 +0000 | [diff] [blame] | 197 | bool Pic; |
Jack Carter | 3953672 | 2014-01-22 23:08:42 +0000 | [diff] [blame] | 198 | |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 199 | public: |
Rafael Espindola | 6d5f7ce | 2014-01-14 04:25:13 +0000 | [diff] [blame] | 200 | bool isMicroMipsEnabled() const { return MicroMipsEnabled; } |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 201 | MCELFStreamer &getStreamer(); |
Rafael Espindola | cb1953f | 2014-01-26 06:57:13 +0000 | [diff] [blame] | 202 | MipsTargetELFStreamer(MCStreamer &S, const MCSubtargetInfo &STI); |
Rafael Espindola | 6d5f7ce | 2014-01-14 04:25:13 +0000 | [diff] [blame] | 203 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 204 | void emitLabel(MCSymbol *Symbol) override; |
| 205 | void emitAssignment(MCSymbol *Symbol, const MCExpr *Value) override; |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame] | 206 | void finish() override; |
Rafael Espindola | 6d5f7ce | 2014-01-14 04:25:13 +0000 | [diff] [blame] | 207 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 208 | void emitDirectiveSetMicroMips() override; |
| 209 | void emitDirectiveSetNoMicroMips() override; |
| 210 | void emitDirectiveSetMips16() override; |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 211 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 212 | void emitDirectiveSetNoReorder() override; |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 213 | void emitDirectiveEnd(StringRef Name) override; |
Rafael Espindola | eb0a8af | 2014-01-26 05:06:48 +0000 | [diff] [blame] | 214 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 215 | void emitDirectiveEnt(const MCSymbol &Symbol) override; |
| 216 | void emitDirectiveAbiCalls() override; |
| 217 | void emitDirectiveNaN2008() override; |
| 218 | void emitDirectiveNaNLegacy() override; |
| 219 | void emitDirectiveOptionPic0() override; |
| 220 | void emitDirectiveOptionPic2() override; |
| 221 | void emitFrame(unsigned StackReg, unsigned StackSize, |
| 222 | unsigned ReturnReg) override; |
| 223 | void emitMask(unsigned CPUBitmask, int CPUTopSavedRegOff) override; |
| 224 | void emitFMask(unsigned FPUBitmask, int FPUTopSavedRegOff) override; |
Vladimir Medic | 615b26e | 2014-03-04 09:54:09 +0000 | [diff] [blame] | 225 | |
Matheus Almeida | 525bc4f | 2014-04-30 11:28:42 +0000 | [diff] [blame] | 226 | // PIC support |
Toma Tabacu | c4c202a | 2014-10-01 14:53:19 +0000 | [diff] [blame] | 227 | void emitDirectiveCpLoad(unsigned RegNo) override; |
Matheus Almeida | d92a3fa | 2014-05-01 10:24:46 +0000 | [diff] [blame] | 228 | void emitDirectiveCpsetup(unsigned RegNo, int RegOrOffset, |
| 229 | const MCSymbol &Sym, bool IsReg) override; |
Matheus Almeida | 525bc4f | 2014-04-30 11:28:42 +0000 | [diff] [blame] | 230 | |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 231 | // ABI Flags |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 232 | void emitDirectiveModuleOddSPReg(bool Enabled, bool IsO32ABI) override; |
Vladimir Medic | fb8a2a9 | 2014-07-08 08:59:22 +0000 | [diff] [blame] | 233 | void emitMipsAbiFlags() override; |
Jack Carter | 86ac5c1 | 2013-11-18 23:55:27 +0000 | [diff] [blame] | 234 | }; |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 235 | } |
Rafael Espindola | a17151a | 2013-10-08 13:08:17 +0000 | [diff] [blame] | 236 | #endif |