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

Side by Side Diff: src/arm64/simulator-arm64.h

Issue 226503004: ARM64: Put all simulator trace on the same stream. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm64/simulator-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 void CorruptRegisters(CPURegList* list, 778 void CorruptRegisters(CPURegList* list,
779 uint64_t value = kDefaultCPURegisterCorruptionValue); 779 uint64_t value = kDefaultCPURegisterCorruptionValue);
780 void CorruptAllCallerSavedCPURegisters(); 780 void CorruptAllCallerSavedCPURegisters();
781 #endif 781 #endif
782 782
783 // Processor state --------------------------------------- 783 // Processor state ---------------------------------------
784 784
785 // Output stream. 785 // Output stream.
786 FILE* stream_; 786 FILE* stream_;
787 PrintDisassembler* print_disasm_; 787 PrintDisassembler* print_disasm_;
788 void PRINTF_METHOD_CHECKING TraceSim(const char* format, ...);
788 789
789 // Instrumentation. 790 // Instrumentation.
790 Instrument* instrument_; 791 Instrument* instrument_;
791 792
792 // General purpose registers. Register 31 is the stack pointer. 793 // General purpose registers. Register 31 is the stack pointer.
793 SimRegister registers_[kNumberOfRegisters]; 794 SimRegister registers_[kNumberOfRegisters];
794 795
795 // Floating point registers 796 // Floating point registers
796 SimFPRegister fpregisters_[kNumberOfFPRegisters]; 797 SimFPRegister fpregisters_[kNumberOfFPRegisters];
797 798
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 static void UnregisterCTryCatch() { 900 static void UnregisterCTryCatch() {
900 Simulator::current(Isolate::Current())->PopAddress(); 901 Simulator::current(Isolate::Current())->PopAddress();
901 } 902 }
902 }; 903 };
903 904
904 #endif // !defined(USE_SIMULATOR) 905 #endif // !defined(USE_SIMULATOR)
905 906
906 } } // namespace v8::internal 907 } } // namespace v8::internal
907 908
908 #endif // V8_ARM64_SIMULATOR_ARM64_H_ 909 #endif // V8_ARM64_SIMULATOR_ARM64_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm64/simulator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698