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

Side by Side Diff: src/gdb-jit.cc

Issue 21022003: Revert new OS and CC detection and related changes since r15923. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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/d8-posix.cc ('k') | src/globals.h » ('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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 24 matching lines...) Expand all
35 #include "frames-inl.h" 35 #include "frames-inl.h"
36 #include "global-handles.h" 36 #include "global-handles.h"
37 #include "messages.h" 37 #include "messages.h"
38 #include "natives.h" 38 #include "natives.h"
39 #include "platform.h" 39 #include "platform.h"
40 #include "scopes.h" 40 #include "scopes.h"
41 41
42 namespace v8 { 42 namespace v8 {
43 namespace internal { 43 namespace internal {
44 44
45 #if V8_OS_DARWIN 45 #ifdef __APPLE__
46 #define __MACH_O 46 #define __MACH_O
47 class MachO; 47 class MachO;
48 class MachOSection; 48 class MachOSection;
49 typedef MachO DebugObject; 49 typedef MachO DebugObject;
50 typedef MachOSection DebugSection; 50 typedef MachOSection DebugSection;
51 #else 51 #else
52 #define __ELF 52 #define __ELF
53 class ELF; 53 class ELF;
54 class ELFSection; 54 class ELFSection;
55 typedef ELF DebugObject; 55 typedef ELF DebugObject;
(...skipping 2134 matching lines...) Expand 10 before | Expand all | Expand 10 after
2190 ScopedLock lock(mutex.Pointer()); 2190 ScopedLock lock(mutex.Pointer());
2191 ASSERT(!IsLineInfoTagged(line_info)); 2191 ASSERT(!IsLineInfoTagged(line_info));
2192 HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true); 2192 HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true);
2193 ASSERT(e->value == NULL); 2193 ASSERT(e->value == NULL);
2194 e->value = TagLineInfo(line_info); 2194 e->value = TagLineInfo(line_info);
2195 } 2195 }
2196 2196
2197 2197
2198 } } // namespace v8::internal 2198 } } // namespace v8::internal
2199 #endif 2199 #endif
OLDNEW
« no previous file with comments | « src/d8-posix.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698