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

Unified Diff: src/IceInstARM32.cpp

Issue 1516753008: Subzero: Use "auto" per (unwritten) auto coding style. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: More <cast> instances without the llvm:: prefix Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInst.cpp ('k') | src/IceInstMIPS32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstARM32.cpp
diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
index 82a92e6f132f8ecf07e11f7b2e9820199fe08f7b..e39977ae6ad843091598442b68d0fa9a85ca6599 100644
--- a/src/IceInstARM32.cpp
+++ b/src/IceInstARM32.cpp
@@ -396,7 +396,7 @@ OperandARM32FlexReg::OperandARM32FlexReg(Cfg *Func, Type Ty, Variable *Reg,
: OperandARM32Flex(kFlexReg, Ty), Reg(Reg), ShiftOp(ShiftOp),
ShiftAmt(ShiftAmt) {
NumVars = 1;
- Variable *ShiftVar = llvm::dyn_cast_or_null<Variable>(ShiftAmt);
+ auto *ShiftVar = llvm::dyn_cast_or_null<Variable>(ShiftAmt);
if (ShiftVar)
++NumVars;
Vars = Func->allocateArrayOf<Variable *>(NumVars);
@@ -824,8 +824,8 @@ void InstARM32Mov::emitSingleDestMultiSource(const Cfg *Func) const {
return;
Ostream &Str = Func->getContext()->getStrEmit();
Variable *Dest = getDest();
- Variable *SrcLo = llvm::cast<Variable>(getSrc(0));
- Variable *SrcHi = llvm::cast<Variable>(getSrc(1));
+ auto *SrcLo = llvm::cast<Variable>(getSrc(0));
+ auto *SrcHi = llvm::cast<Variable>(getSrc(1));
assert(SrcHi->hasReg());
assert(SrcLo->hasReg());
@@ -1192,7 +1192,7 @@ template <> void InstARM32Movw::emit(const Cfg *Func) const {
Str << "\t" << Opcode << getPredicate() << "\t";
getDest()->emit(Func);
Str << ", ";
- Constant *Src0 = llvm::cast<Constant>(getSrc(0));
+ auto *Src0 = llvm::cast<Constant>(getSrc(0));
if (auto *CR = llvm::dyn_cast<ConstantRelocatable>(Src0)) {
Str << "#:lower16:";
CR->emitWithoutPrefix(Func->getTarget());
@@ -1215,7 +1215,7 @@ template <> void InstARM32Movt::emit(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrEmit();
assert(getSrcSize() == 2);
Variable *Dest = getDest();
- Constant *Src1 = llvm::cast<Constant>(getSrc(1));
+ auto *Src1 = llvm::cast<Constant>(getSrc(1));
Str << "\t" << Opcode << getPredicate() << "\t";
Dest->emit(Func);
Str << ", ";
@@ -1391,7 +1391,7 @@ void InstARM32Push::emit(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrEmit();
- Variable *Reg = llvm::cast<Variable>(getSrc(0));
+ auto *Reg = llvm::cast<Variable>(getSrc(0));
if (isScalarIntegerType(Reg->getType())) {
// GPR push.
Str << "\t"
@@ -1412,7 +1412,7 @@ void InstARM32Push::emit(const Cfg *Func) const {
"\t{";
Reg->emit(Func);
for (SizeT i = 1; i < SrcSize; ++i) {
- Variable *NextReg = llvm::cast<Variable>(getSrc(i));
+ auto *NextReg = llvm::cast<Variable>(getSrc(i));
if (isAssignedConsecutiveRegisters(Reg, NextReg)) {
Str << ", ";
} else {
@@ -1476,7 +1476,7 @@ void InstARM32Ret::emit(const Cfg *Func) const {
if (!BuildDefs::dump())
return;
assert(getSrcSize() > 0);
- Variable *LR = llvm::cast<Variable>(getSrc(0));
+ auto *LR = llvm::cast<Variable>(getSrc(0));
assert(LR->hasReg());
assert(LR->getRegNum() == RegARM32::Reg_lr);
Ostream &Str = Func->getContext()->getStrEmit();
« no previous file with comments | « src/IceInst.cpp ('k') | src/IceInstMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698