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

Side by Side Diff: src/IceTargetLoweringX86Base.h

Issue 1266673003: Subzero. Implements x86-64 lowerCall. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: git pull & painful merge. Created 5 years, 4 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/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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 protected: 121 protected:
122 explicit TargetX86Base(Cfg *Func); 122 explicit TargetX86Base(Cfg *Func);
123 123
124 void postLower() override; 124 void postLower() override;
125 125
126 void lowerAlloca(const InstAlloca *Inst) override; 126 void lowerAlloca(const InstAlloca *Inst) override;
127 void lowerArithmetic(const InstArithmetic *Inst) override; 127 void lowerArithmetic(const InstArithmetic *Inst) override;
128 void lowerAssign(const InstAssign *Inst) override; 128 void lowerAssign(const InstAssign *Inst) override;
129 void lowerBr(const InstBr *Inst) override; 129 void lowerBr(const InstBr *Inst) override;
130 void lowerCall(const InstCall *Inst) override;
131 void lowerCast(const InstCast *Inst) override; 130 void lowerCast(const InstCast *Inst) override;
132 void lowerExtractElement(const InstExtractElement *Inst) override; 131 void lowerExtractElement(const InstExtractElement *Inst) override;
133 void lowerFcmp(const InstFcmp *Inst) override; 132 void lowerFcmp(const InstFcmp *Inst) override;
134 void lowerIcmp(const InstIcmp *Inst) override; 133 void lowerIcmp(const InstIcmp *Inst) override;
135 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; 134 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override;
136 void lowerInsertElement(const InstInsertElement *Inst) override; 135 void lowerInsertElement(const InstInsertElement *Inst) override;
137 void lowerLoad(const InstLoad *Inst) override; 136 void lowerLoad(const InstLoad *Inst) override;
138 void lowerPhi(const InstPhi *Inst) override; 137 void lowerPhi(const InstPhi *Inst) override;
139 void lowerRet(const InstRet *Inst) override; 138 void lowerRet(const InstRet *Inst) override;
140 void lowerSelect(const InstSelect *Inst) override; 139 void lowerSelect(const InstSelect *Inst) override;
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 } 621 }
623 622
624 BoolFolding FoldingInfo; 623 BoolFolding FoldingInfo;
625 }; 624 };
626 } // end of namespace X86Internal 625 } // end of namespace X86Internal
627 } // end of namespace Ice 626 } // end of namespace Ice
628 627
629 #include "IceTargetLoweringX86BaseImpl.h" 628 #include "IceTargetLoweringX86BaseImpl.h"
630 629
631 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H 630 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698