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

Side by Side Diff: src/mips/disasm-mips.cc

Issue 18037002: Clean up the usage of V8_TARGET_ARCH_${arch} and V8_HOST_ARCH_${arch} (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 5 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 | « src/mips/debug-mips.cc ('k') | src/mips/frames-mips.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include <assert.h> 49 #include <assert.h>
50 #include <stdio.h> 50 #include <stdio.h>
51 #include <stdarg.h> 51 #include <stdarg.h>
52 #include <string.h> 52 #include <string.h>
53 #ifndef WIN32 53 #ifndef WIN32
54 #include <stdint.h> 54 #include <stdint.h>
55 #endif 55 #endif
56 56
57 #include "v8.h" 57 #include "v8.h"
58 58
59 #if defined(V8_TARGET_ARCH_MIPS) 59 #if V8_TARGET_ARCH_MIPS
60 60
61 #include "mips/constants-mips.h" 61 #include "mips/constants-mips.h"
62 #include "disasm.h" 62 #include "disasm.h"
63 #include "macro-assembler.h" 63 #include "macro-assembler.h"
64 #include "platform.h" 64 #include "platform.h"
65 65
66 namespace v8 { 66 namespace v8 {
67 namespace internal { 67 namespace internal {
68 68
69 //------------------------------------------------------------------------------ 69 //------------------------------------------------------------------------------
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start()); 1055 prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start());
1056 } 1056 }
1057 } 1057 }
1058 1058
1059 1059
1060 #undef UNSUPPORTED 1060 #undef UNSUPPORTED
1061 1061
1062 } // namespace disasm 1062 } // namespace disasm
1063 1063
1064 #endif // V8_TARGET_ARCH_MIPS 1064 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/mips/debug-mips.cc ('k') | src/mips/frames-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698