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

Side by Side Diff: src/IceTargetLoweringX86Base.h

Issue 2107073002: Subzero: Merge SpillVariable functionality directly into Variable. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review comments. Created 4 years, 5 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
« no previous file with comments | « src/IceTargetLoweringX8664Traits.h ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 using ConcreteTarget = typename Traits::ConcreteTarget; 63 using ConcreteTarget = typename Traits::ConcreteTarget;
64 using InstructionSetEnum = typename Traits::InstructionSet; 64 using InstructionSetEnum = typename Traits::InstructionSet;
65 65
66 using BrCond = typename Traits::Cond::BrCond; 66 using BrCond = typename Traits::Cond::BrCond;
67 using CmppsCond = typename Traits::Cond::CmppsCond; 67 using CmppsCond = typename Traits::Cond::CmppsCond;
68 68
69 using X86Address = typename Traits::Address; 69 using X86Address = typename Traits::Address;
70 using X86Operand = typename Traits::X86Operand; 70 using X86Operand = typename Traits::X86Operand;
71 using X86OperandMem = typename Traits::X86OperandMem; 71 using X86OperandMem = typename Traits::X86OperandMem;
72 using SegmentRegisters = typename Traits::X86OperandMem::SegmentRegisters; 72 using SegmentRegisters = typename Traits::X86OperandMem::SegmentRegisters;
73 using SpillVariable = typename Traits::SpillVariable;
74 73
75 using InstX86Br = typename Traits::Insts::Br; 74 using InstX86Br = typename Traits::Insts::Br;
76 using InstX86FakeRMW = typename Traits::Insts::FakeRMW; 75 using InstX86FakeRMW = typename Traits::Insts::FakeRMW;
77 using InstX86Label = typename Traits::Insts::Label; 76 using InstX86Label = typename Traits::Insts::Label;
78 77
79 ~TargetX86Base() override = default; 78 ~TargetX86Base() override = default;
80 79
81 static void staticInit(GlobalContext *Ctx); 80 static void staticInit(GlobalContext *Ctx);
82 static bool shouldBePooled(const Constant *C); 81 static bool shouldBePooled(const Constant *C);
83 82
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 1168
1170 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} 1169 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {}
1171 }; 1170 };
1172 1171
1173 } // end of namespace X86NAMESPACE 1172 } // end of namespace X86NAMESPACE
1174 } // end of namespace Ice 1173 } // end of namespace Ice
1175 1174
1176 #include "IceTargetLoweringX86BaseImpl.h" 1175 #include "IceTargetLoweringX86BaseImpl.h"
1177 1176
1178 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H 1177 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H
OLDNEW
« no previous file with comments | « src/IceTargetLoweringX8664Traits.h ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698