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

Side by Side Diff: src/compiler/instruction.h

Issue 1760323002: [turbofan] SSA Validation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: just ssa validation, after other fixed made it in Created 4 years, 9 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
« no previous file with comments | « no previous file | src/compiler/instruction.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_COMPILER_INSTRUCTION_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_H_
6 #define V8_COMPILER_INSTRUCTION_H_ 6 #define V8_COMPILER_INSTRUCTION_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <iosfwd> 9 #include <iosfwd>
10 #include <map> 10 #include <map>
(...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 if (instr->IsCall()) return true; 1347 if (instr->IsCall()) return true;
1348 } 1348 }
1349 return false; 1349 return false;
1350 } 1350 }
1351 void Print(const RegisterConfiguration* config) const; 1351 void Print(const RegisterConfiguration* config) const;
1352 void Print() const; 1352 void Print() const;
1353 1353
1354 void PrintBlock(const RegisterConfiguration* config, int block_id) const; 1354 void PrintBlock(const RegisterConfiguration* config, int block_id) const;
1355 void PrintBlock(int block_id) const; 1355 void PrintBlock(int block_id) const;
1356 1356
1357 void Validate(); 1357 void ValidateEdgeSplitForm();
1358 void ValidateSSA();
1358 1359
1359 private: 1360 private:
1360 friend std::ostream& operator<<(std::ostream& os, 1361 friend std::ostream& operator<<(std::ostream& os,
1361 const PrintableInstructionSequence& code); 1362 const PrintableInstructionSequence& code);
1362 1363
1363 typedef ZoneMap<const Instruction*, SourcePosition> SourcePositionMap; 1364 typedef ZoneMap<const Instruction*, SourcePosition> SourcePositionMap;
1364 1365
1365 Isolate* isolate_; 1366 Isolate* isolate_;
1366 Zone* const zone_; 1367 Zone* const zone_;
1367 InstructionBlocks* const instruction_blocks_; 1368 InstructionBlocks* const instruction_blocks_;
(...skipping 18 matching lines...) Expand all
1386 1387
1387 1388
1388 std::ostream& operator<<(std::ostream& os, 1389 std::ostream& operator<<(std::ostream& os,
1389 const PrintableInstructionSequence& code); 1390 const PrintableInstructionSequence& code);
1390 1391
1391 } // namespace compiler 1392 } // namespace compiler
1392 } // namespace internal 1393 } // namespace internal
1393 } // namespace v8 1394 } // namespace v8
1394 1395
1395 #endif // V8_COMPILER_INSTRUCTION_H_ 1396 #endif // V8_COMPILER_INSTRUCTION_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/instruction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698