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

Side by Side Diff: src/IceAssemblerARM32.cpp

Issue 1665263003: Subzero. ARM32. Nonsfi. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: git pull Created 4 years, 10 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/IceAssemblerARM32.cpp - Assembler for ARM32 --*- C++ -*-===// 1 //===- subzero/src/IceAssemblerARM32.cpp - Assembler for ARM32 --*- C++ -*-===//
2 // 2 //
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 // 6 //
7 // Modified by the Subzero authors. 7 // Modified by the Subzero authors.
8 // 8 //
9 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===//
10 // 10 //
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 593
594 namespace Ice { 594 namespace Ice {
595 namespace ARM32 { 595 namespace ARM32 {
596 596
597 size_t MoveRelocatableFixup::emit(GlobalContext *Ctx, 597 size_t MoveRelocatableFixup::emit(GlobalContext *Ctx,
598 const Assembler &Asm) const { 598 const Assembler &Asm) const {
599 if (!BuildDefs::dump()) 599 if (!BuildDefs::dump())
600 return InstARM32::InstSize; 600 return InstARM32::InstSize;
601 Ostream &Str = Ctx->getStrEmit(); 601 Ostream &Str = Ctx->getStrEmit();
602 IValueT Inst = Asm.load<IValueT>(position()); 602 IValueT Inst = Asm.load<IValueT>(position());
603 const bool IsMovw = kind() == llvm::ELF::R_ARM_MOVW_ABS_NC ||
604 kind() == llvm::ELF::R_ARM_MOVW_PREL_NC;
603 Str << "\t" 605 Str << "\t"
604 "mov" << (kind() == llvm::ELF::R_ARM_MOVW_ABS_NC ? "w" : "t") << "\t" 606 "mov" << (IsMovw ? "w" : "t") << "\t"
605 << RegARM32::getRegName((Inst >> kRdShift) & 0xF) 607 << RegARM32::getRegName((Inst >> kRdShift) & 0xF)
606 << ", #:" << (kind() == llvm::ELF::R_ARM_MOVW_ABS_NC ? "lower" : "upper") 608 << ", #:" << (IsMovw ? "lower" : "upper") << "16:" << symbol(Ctx, &Asm)
607 << "16:" << symbol(Ctx, &Asm) << "\t@ .word " 609 << "\t@ .word " << llvm::format_hex_no_prefix(Inst, 8) << "\n";
608 << llvm::format_hex_no_prefix(Inst, 8) << "\n";
609 return InstARM32::InstSize; 610 return InstARM32::InstSize;
610 } 611 }
611 612
612 // This fixup points to an ARM32 instruction with the following format: 613 // This fixup points to an ARM32 instruction with the following format:
613 void MoveRelocatableFixup::emitOffset(Assembler *Asm) const { 614 void MoveRelocatableFixup::emitOffset(Assembler *Asm) const {
614 // cccc00110T00iiiiddddiiiiiiiiiiii where cccc=Cond, dddd=Rd, 615 // cccc00110T00iiiiddddiiiiiiiiiiii where cccc=Cond, dddd=Rd,
615 // iiiiiiiiiiiiiiii = Imm16, and T=1 for movt. 616 // iiiiiiiiiiiiiiii = Imm16, and T=1 for movt.
616 617
617 const IValueT Inst = Asm->load<IValueT>(position()); 618 const IValueT Inst = Asm->load<IValueT>(position());
618 constexpr IValueT Imm16Mask = 0x000F0FFF; 619 constexpr IValueT Imm16Mask = 0x000F0FFF;
619 const IValueT Imm16 = 620 const IValueT Imm16 = offset() & 0xffff;
620 offset() >> (kind() == llvm::ELF::R_ARM_MOVW_ABS_NC ? 0 : 16) & 0xffff;
621 Asm->store(position(), 621 Asm->store(position(),
622 (Inst & ~Imm16Mask) | ((Imm16 >> 12) << 16) | (Imm16 & 0xfff)); 622 (Inst & ~Imm16Mask) | ((Imm16 >> 12) << 16) | (Imm16 & 0xfff));
623 } 623 }
624 624
625 MoveRelocatableFixup *AssemblerARM32::createMoveFixup(bool IsMovW, 625 MoveRelocatableFixup *AssemblerARM32::createMoveFixup(bool IsMovW,
626 const Constant *Value) { 626 const Constant *Value) {
627 MoveRelocatableFixup *F = 627 MoveRelocatableFixup *F =
628 new (allocate<MoveRelocatableFixup>()) MoveRelocatableFixup(); 628 new (allocate<MoveRelocatableFixup>()) MoveRelocatableFixup();
629 F->set_kind(IsMovW ? llvm::ELF::R_ARM_MOVW_ABS_NC 629 F->set_kind(IsMovW ? (IsNonsfi ? llvm::ELF::R_ARM_MOVW_PREL_NC
630 : llvm::ELF::R_ARM_MOVT_ABS); 630 : llvm::ELF::R_ARM_MOVW_ABS_NC)
631 : (IsNonsfi ? llvm::ELF::R_ARM_MOVT_PREL
632 : llvm::ELF::R_ARM_MOVT_ABS));
631 F->set_value(Value); 633 F->set_value(Value);
632 Buffer.installFixup(F); 634 Buffer.installFixup(F);
633 return F; 635 return F;
634 } 636 }
635 637
636 size_t BlRelocatableFixup::emit(GlobalContext *Ctx, 638 size_t BlRelocatableFixup::emit(GlobalContext *Ctx,
637 const Assembler &Asm) const { 639 const Assembler &Asm) const {
638 if (!BuildDefs::dump()) 640 if (!BuildDefs::dump())
639 return InstARM32::InstSize; 641 return InstARM32::InstSize;
640 Ostream &Str = Ctx->getStrEmit(); 642 Ostream &Str = Ctx->getStrEmit();
(...skipping 2410 matching lines...) Expand 10 before | Expand all | Expand 10 after
3051 constexpr const char *Vsqrts = "vsqrts"; 3053 constexpr const char *Vsqrts = "vsqrts";
3052 IValueT Sd = encodeSRegister(OpSd, "Sd", Vsqrts); 3054 IValueT Sd = encodeSRegister(OpSd, "Sd", Vsqrts);
3053 IValueT Sm = encodeSRegister(OpSm, "Sm", Vsqrts); 3055 IValueT Sm = encodeSRegister(OpSm, "Sm", Vsqrts);
3054 constexpr IValueT VsqrtsOpcode = B23 | B21 | B20 | B16 | B7 | B6; 3056 constexpr IValueT VsqrtsOpcode = B23 | B21 | B20 | B16 | B7 | B6;
3055 constexpr IValueT S0 = 0; 3057 constexpr IValueT S0 = 0;
3056 emitVFPsss(Cond, VsqrtsOpcode, Sd, S0, Sm); 3058 emitVFPsss(Cond, VsqrtsOpcode, Sd, S0, Sm);
3057 } 3059 }
3058 3060
3059 } // end of namespace ARM32 3061 } // end of namespace ARM32
3060 } // end of namespace Ice 3062 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698