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

Side by Side Diff: src/data-flow.cc

Issue 3432032: Fix test after 64 bit heap size change. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 2 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/contexts.cc ('k') | src/disassembler.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 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 35
36 36
37 #ifdef DEBUG 37 #ifdef DEBUG
38 void BitVector::Print() { 38 void BitVector::Print() {
39 bool first = true; 39 bool first = true;
40 PrintF("{"); 40 PrintF("{");
41 for (int i = 0; i < length(); i++) { 41 for (int i = 0; i < length(); i++) {
42 if (Contains(i)) { 42 if (Contains(i)) {
43 if (!first) PrintF(","); 43 if (!first) PrintF(",");
44 first = false; 44 first = false;
45 PrintF("%d"); 45 PrintF("%d", i);
46 } 46 }
47 } 47 }
48 PrintF("}"); 48 PrintF("}");
49 } 49 }
50 #endif 50 #endif
51 51
52 52
53 bool AssignedVariablesAnalyzer::Analyze() { 53 bool AssignedVariablesAnalyzer::Analyze() {
54 Scope* scope = fun_->scope(); 54 Scope* scope = fun_->scope();
55 int variables = scope->num_parameters() + scope->num_stack_slots(); 55 int variables = scope->num_parameters() + scope->num_stack_slots();
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 ASSERT(av_.IsEmpty()); 515 ASSERT(av_.IsEmpty());
516 } 516 }
517 517
518 518
519 void AssignedVariablesAnalyzer::VisitDeclaration(Declaration* decl) { 519 void AssignedVariablesAnalyzer::VisitDeclaration(Declaration* decl) {
520 UNREACHABLE(); 520 UNREACHABLE();
521 } 521 }
522 522
523 523
524 } } // namespace v8::internal 524 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/contexts.cc ('k') | src/disassembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698