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

Side by Side Diff: lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp

Issue 647443005: Change usage of naclcall and nacljmp pseudo-instructions to match x86 gas (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: remove NACL_call32d and auto-align bare call Created 6 years, 2 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 | « no previous file | lib/Target/X86/MCTargetDesc/X86MCNaCl.h » ('j') | lib/Target/X86/X86InstrNaCl.td » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===-- X86AsmBackend.cpp - X86 Assembler Backend -------------------------===// 1 //===-- X86AsmBackend.cpp - X86 Assembler Backend -------------------------===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
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 #include "MCTargetDesc/X86BaseInfo.h" 10 #include "MCTargetDesc/X86BaseInfo.h"
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 } 378 }
379 }; 379 };
380 380
381 // @LOCALMOD-BEGIN 381 // @LOCALMOD-BEGIN
382 class NaClX86_32AsmBackend : public ELFX86_32AsmBackend { 382 class NaClX86_32AsmBackend : public ELFX86_32AsmBackend {
383 public: 383 public:
384 NaClX86_32AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU) 384 NaClX86_32AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
385 : ELFX86_32AsmBackend(T, OSABI, CPU) { 385 : ELFX86_32AsmBackend(T, OSABI, CPU) {
386 State.PrefixSaved = 0; 386 State.PrefixSaved = 0;
387 State.PrefixPass = false; 387 State.PrefixPass = false;
388 State.EmitRaw = false;
388 } 389 }
389 390
390 bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) { 391 bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) {
391 return CustomExpandInstNaClX86(Inst, Out, State); 392 return CustomExpandInstNaClX86(Inst, Out, State);
392 } 393 }
393 private: 394 private:
394 X86MCNaClSFIState State; 395 X86MCNaClSFIState State;
395 }; 396 };
396 397
397 class NaClX86_64AsmBackend : public ELFX86_64AsmBackend { 398 class NaClX86_64AsmBackend : public ELFX86_64AsmBackend {
398 public: 399 public:
399 NaClX86_64AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU) 400 NaClX86_64AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
400 : ELFX86_64AsmBackend(T, OSABI, CPU) { 401 : ELFX86_64AsmBackend(T, OSABI, CPU) {
401 State.PrefixSaved = 0; 402 State.PrefixSaved = 0;
402 State.PrefixPass = false; 403 State.PrefixPass = false;
404 State.EmitRaw = false;
403 } 405 }
404 406
405 bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) { 407 bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) {
406 return CustomExpandInstNaClX86(Inst, Out, State); 408 return CustomExpandInstNaClX86(Inst, Out, State);
407 } 409 }
408 private: 410 private:
409 X86MCNaClSFIState State; 411 X86MCNaClSFIState State;
410 }; 412 };
411 // @LOCALMOD-END 413 // @LOCALMOD-END
412 414
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 if (TheTriple.isOSWindows() && TheTriple.getEnvironment() != Triple::ELF) 873 if (TheTriple.isOSWindows() && TheTriple.getEnvironment() != Triple::ELF)
872 return new WindowsX86AsmBackend(T, true, CPU); 874 return new WindowsX86AsmBackend(T, true, CPU);
873 875
874 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS()); 876 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
875 // @LOCALMOD-BEGIN 877 // @LOCALMOD-BEGIN
876 if (TheTriple.isOSNaCl()) 878 if (TheTriple.isOSNaCl())
877 return new NaClX86_64AsmBackend(T, OSABI, CPU); 879 return new NaClX86_64AsmBackend(T, OSABI, CPU);
878 // @LOCALMOD-END 880 // @LOCALMOD-END
879 return new ELFX86_64AsmBackend(T, OSABI, CPU); 881 return new ELFX86_64AsmBackend(T, OSABI, CPU);
880 } 882 }
OLDNEW
« no previous file with comments | « no previous file | lib/Target/X86/MCTargetDesc/X86MCNaCl.h » ('j') | lib/Target/X86/X86InstrNaCl.td » ('J')

Powered by Google App Engine
This is Rietveld 408576698