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

Side by Side Diff: src/hydrogen.cc

Issue 10824032: Enables V8 integration with the Intel VTune performance analysis tool. This allows the VTune profi… (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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
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 18 matching lines...) Expand all
29 #include "hydrogen.h" 29 #include "hydrogen.h"
30 30
31 #include "codegen.h" 31 #include "codegen.h"
32 #include "full-codegen.h" 32 #include "full-codegen.h"
33 #include "hashmap.h" 33 #include "hashmap.h"
34 #include "lithium-allocator.h" 34 #include "lithium-allocator.h"
35 #include "parser.h" 35 #include "parser.h"
36 #include "scopeinfo.h" 36 #include "scopeinfo.h"
37 #include "scopes.h" 37 #include "scopes.h"
38 #include "stub-cache.h" 38 #include "stub-cache.h"
39 #include "third_party/vtune/vtune-jit.h"
39 40
40 #if V8_TARGET_ARCH_IA32 41 #if V8_TARGET_ARCH_IA32
41 #include "ia32/lithium-codegen-ia32.h" 42 #include "ia32/lithium-codegen-ia32.h"
42 #elif V8_TARGET_ARCH_X64 43 #elif V8_TARGET_ARCH_X64
43 #include "x64/lithium-codegen-x64.h" 44 #include "x64/lithium-codegen-x64.h"
44 #elif V8_TARGET_ARCH_ARM 45 #elif V8_TARGET_ARCH_ARM
45 #include "arm/lithium-codegen-arm.h" 46 #include "arm/lithium-codegen-arm.h"
46 #elif V8_TARGET_ARCH_MIPS 47 #elif V8_TARGET_ARCH_MIPS
47 #include "mips/lithium-codegen-mips.h" 48 #include "mips/lithium-codegen-mips.h"
48 #else 49 #else
(...skipping 9534 matching lines...) Expand 10 before | Expand all | Expand 10 after
9583 } 9584 }
9584 } 9585 }
9585 9586
9586 #ifdef DEBUG 9587 #ifdef DEBUG
9587 if (graph_ != NULL) graph_->Verify(false); // No full verify. 9588 if (graph_ != NULL) graph_->Verify(false); // No full verify.
9588 if (allocator_ != NULL) allocator_->Verify(); 9589 if (allocator_ != NULL) allocator_->Verify();
9589 #endif 9590 #endif
9590 } 9591 }
9591 9592
9592 } } // namespace v8::internal 9593 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698