Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Side by Side Diff: src/IceFixups.h

Issue 1418523002: Add hybrid assembler concept to ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceFixups.h - Assembler fixup kinds ----------*- C++ -*-===// 1 //===- subzero/src/IceFixups.h - Assembler fixup kinds ----------*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 27 matching lines...) Expand all
38 void set_kind(FixupKind Kind) { kind_ = Kind; } 38 void set_kind(FixupKind Kind) { kind_ = Kind; }
39 39
40 RelocOffsetT offset() const; 40 RelocOffsetT offset() const;
41 IceString symbol(const GlobalContext *Ctx) const; 41 IceString symbol(const GlobalContext *Ctx) const;
42 42
43 static const Constant *NullSymbol; 43 static const Constant *NullSymbol;
44 bool isNullSymbol() const { return value_ == NullSymbol; } 44 bool isNullSymbol() const { return value_ == NullSymbol; }
45 45
46 void set_value(const Constant *Value) { value_ = Value; } 46 void set_value(const Constant *Value) { value_ = Value; }
47 47
48 void emit(GlobalContext *Ctx, RelocOffsetT OverrideOffset) const; 48 // Emits fixup, then returns the number of bytes to skip.
49 virtual size_t emit(GlobalContext *Ctx, RelocOffsetT OverrideOffset,
50 bool IsPCRel) const;
49 51
50 private: 52 private:
51 intptr_t position_ = 0; 53 intptr_t position_ = 0;
52 FixupKind kind_ = 0; 54 FixupKind kind_ = 0;
53 const Constant *value_ = nullptr; 55 const Constant *value_ = nullptr;
54 }; 56 };
55 57
56 using FixupList = std::vector<AssemblerFixup>; 58 using FixupList = std::vector<AssemblerFixup>;
57 using FixupRefList = std::vector<AssemblerFixup *>; 59 using FixupRefList = std::vector<AssemblerFixup *>;
58 60
59 } // end of namespace Ice 61 } // end of namespace Ice
60 62
61 #endif // SUBZERO_SRC_ICEFIXUPS_H 63 #endif // SUBZERO_SRC_ICEFIXUPS_H
OLDNEW
« src/IceClFlags.h ('K') | « src/IceClFlags.cpp ('k') | src/IceFixups.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698