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

Side by Side Diff: src/hydrogen.cc

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/hydrogen.h" 5 #include "src/hydrogen.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "src/typing.h" 43 #include "src/typing.h"
44 44
45 #if V8_TARGET_ARCH_IA32 45 #if V8_TARGET_ARCH_IA32
46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
47 #elif V8_TARGET_ARCH_X64 47 #elif V8_TARGET_ARCH_X64
48 #include "src/x64/lithium-codegen-x64.h" // NOLINT 48 #include "src/x64/lithium-codegen-x64.h" // NOLINT
49 #elif V8_TARGET_ARCH_ARM64 49 #elif V8_TARGET_ARCH_ARM64
50 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT 50 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT
51 #elif V8_TARGET_ARCH_ARM 51 #elif V8_TARGET_ARCH_ARM
52 #include "src/arm/lithium-codegen-arm.h" // NOLINT 52 #include "src/arm/lithium-codegen-arm.h" // NOLINT
53 #elif V8_TARGET_ARCH_PPC
54 #include "src/ppc/lithium-codegen-ppc.h" // NOLINT
53 #elif V8_TARGET_ARCH_MIPS 55 #elif V8_TARGET_ARCH_MIPS
54 #include "src/mips/lithium-codegen-mips.h" // NOLINT 56 #include "src/mips/lithium-codegen-mips.h" // NOLINT
55 #elif V8_TARGET_ARCH_MIPS64 57 #elif V8_TARGET_ARCH_MIPS64
56 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT 58 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT
57 #elif V8_TARGET_ARCH_X87 59 #elif V8_TARGET_ARCH_X87
58 #include "src/x87/lithium-codegen-x87.h" // NOLINT 60 #include "src/x87/lithium-codegen-x87.h" // NOLINT
59 #else 61 #else
60 #error Unsupported target architecture. 62 #error Unsupported target architecture.
61 #endif 63 #endif
62 64
(...skipping 7390 matching lines...) Expand 10 before | Expand all | Expand 10 after
7453 }; 7455 };
7454 7456
7455 7457
7456 inline bool operator<(const FunctionSorter& lhs, const FunctionSorter& rhs) { 7458 inline bool operator<(const FunctionSorter& lhs, const FunctionSorter& rhs) {
7457 int diff = lhs.ticks() - rhs.ticks(); 7459 int diff = lhs.ticks() - rhs.ticks();
7458 if (diff != 0) return diff > 0; 7460 if (diff != 0) return diff > 0;
7459 return lhs.size() < rhs.size(); 7461 return lhs.size() < rhs.size();
7460 } 7462 }
7461 7463
7462 7464
7465 // Work around for GCC 4.4.6 at -O3 reporting
7466 // warning: array subscript is above array bounds
7467 #pragma GCC diagnostic ignored "-Warray-bounds"
7463 void HOptimizedGraphBuilder::HandlePolymorphicCallNamed( 7468 void HOptimizedGraphBuilder::HandlePolymorphicCallNamed(
7464 Call* expr, 7469 Call* expr,
7465 HValue* receiver, 7470 HValue* receiver,
7466 SmallMapList* types, 7471 SmallMapList* types,
7467 Handle<String> name) { 7472 Handle<String> name) {
7468 int argument_count = expr->arguments()->length() + 1; // Includes receiver. 7473 int argument_count = expr->arguments()->length() + 1; // Includes receiver.
7469 FunctionSorter order[kMaxCallPolymorphism]; 7474 FunctionSorter order[kMaxCallPolymorphism];
7470 7475
7471 bool handle_smi = false; 7476 bool handle_smi = false;
7472 bool handled_string = false; 7477 bool handled_string = false;
(...skipping 5002 matching lines...) Expand 10 before | Expand all | Expand 10 after
12475 if (ShouldProduceTraceOutput()) { 12480 if (ShouldProduceTraceOutput()) {
12476 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 12481 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
12477 } 12482 }
12478 12483
12479 #ifdef DEBUG 12484 #ifdef DEBUG
12480 graph_->Verify(false); // No full verify. 12485 graph_->Verify(false); // No full verify.
12481 #endif 12486 #endif
12482 } 12487 }
12483 12488
12484 } } // namespace v8::internal 12489 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698