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

Unified Diff: src/IceAssemblerARM32.cpp

Issue 1484023002: Fix nits from previous CLs. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix formatting. Created 5 years, 1 month 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/IceAssemblerARM32.h ('k') | tests_lit/assembler/arm32/blx.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssemblerARM32.cpp
diff --git a/src/IceAssemblerARM32.cpp b/src/IceAssemblerARM32.cpp
index 4d13807c32db721abefac0d8e8f656ab778c9b96..c429e8be0c72e7a00f9b44873d77d669adfeee75 100644
--- a/src/IceAssemblerARM32.cpp
+++ b/src/IceAssemblerARM32.cpp
@@ -367,17 +367,18 @@ size_t BlRelocatableFixup::emit(GlobalContext *Ctx,
return InstARM32::InstSize;
Ostream &Str = Ctx->getStrEmit();
IValueT Inst = Asm.load<IValueT>(position());
- Str << "\tbl\t" << symbol(Ctx) << "\t@ .word "
+ Str << "\t"
+ << "bl\t" << symbol(Ctx) << "\t@ .word "
<< llvm::format_hex_no_prefix(Inst, 8) << "\n";
return InstARM32::InstSize;
}
BlRelocatableFixup *
-AssemblerARM32::createBlFixup(const ConstantRelocatable *Target) {
+AssemblerARM32::createBlFixup(const ConstantRelocatable *BlTarget) {
BlRelocatableFixup *F =
new (allocate<BlRelocatableFixup>()) BlRelocatableFixup();
F->set_kind(llvm::ELF::R_ARM_CALL);
- F->set_value(Target);
+ F->set_value(BlTarget);
Buffer.installFixup(F);
return F;
}
@@ -464,7 +465,7 @@ void AssemblerARM32::emitType01(CondARM32::Cond Cond, IValueT Type,
case NoChecks:
break;
case RdIsPcAndSetFlags:
- if (((Rd == RegARM32::Encoded_Reg_pc) && SetFlags))
+ if ((Rd == RegARM32::Encoded_Reg_pc) && SetFlags)
// Conditions of rule violated.
return setNeedsTextFixup();
break;
@@ -778,8 +779,8 @@ void AssemblerARM32::blx(const Operand *Target) {
return setNeedsTextFixup();
AssemblerBuffer::EnsureCapacity ensured(&Buffer);
constexpr CondARM32::Cond Cond = CondARM32::AL;
- int32_t Encoding = (static_cast<int32_t>(Cond) << kConditionShift) | B24 |
- B21 | (0xfff << 8) | B5 | B4 | (Rm << kRmShift);
+ int32_t Encoding = (encodeCondition(Cond) << kConditionShift) | B24 | B21 |
+ (0xfff << 8) | B5 | B4 | (Rm << kRmShift);
emitInst(Encoding);
}
« no previous file with comments | « src/IceAssemblerARM32.h ('k') | tests_lit/assembler/arm32/blx.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698