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

Side by Side Diff: src/hydrogen.h

Issue 10053011: Fix presubmit error in r11270. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 8 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 | « no previous file | no next file » | 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 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 HValueMapListElement* array_; // Primary store - contains the first value 1219 HValueMapListElement* array_; // Primary store - contains the first value
1220 // with a given hash. Colliding elements are stored in linked lists. 1220 // with a given hash. Colliding elements are stored in linked lists.
1221 HValueMapListElement* lists_; // The linked lists containing hash collisions. 1221 HValueMapListElement* lists_; // The linked lists containing hash collisions.
1222 int free_list_head_; // Unused elements in lists_ are on the free list. 1222 int free_list_head_; // Unused elements in lists_ are on the free list.
1223 }; 1223 };
1224 1224
1225 1225
1226 class HSideEffectMap BASE_EMBEDDED { 1226 class HSideEffectMap BASE_EMBEDDED {
1227 public: 1227 public:
1228 HSideEffectMap(); 1228 HSideEffectMap();
1229 HSideEffectMap(HSideEffectMap* other); 1229 explicit HSideEffectMap(HSideEffectMap* other);
1230 1230
1231 void Kill(GVNFlagSet flags); 1231 void Kill(GVNFlagSet flags);
1232 1232
1233 void Store(GVNFlagSet flags, HInstruction* instr); 1233 void Store(GVNFlagSet flags, HInstruction* instr);
1234 1234
1235 bool IsEmpty() const { return count_ == 0; } 1235 bool IsEmpty() const { return count_ == 0; }
1236 1236
1237 inline HInstruction* operator[](int i) const { 1237 inline HInstruction* operator[](int i) const {
1238 ASSERT(0 <= i); 1238 ASSERT(0 <= i);
1239 ASSERT(i < kNumberOfTrackedSideEffects); 1239 ASSERT(i < kNumberOfTrackedSideEffects);
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 const char* filename_; 1398 const char* filename_;
1399 HeapStringAllocator string_allocator_; 1399 HeapStringAllocator string_allocator_;
1400 StringStream trace_; 1400 StringStream trace_;
1401 int indent_; 1401 int indent_;
1402 }; 1402 };
1403 1403
1404 1404
1405 } } // namespace v8::internal 1405 } } // namespace v8::internal
1406 1406
1407 #endif // V8_HYDROGEN_H_ 1407 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698