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

Side by Side Diff: src/x64/lithium-codegen-x64.h

Issue 6647018: Remove class HSubgraph. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « src/hydrogen.cc ('k') | 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 // Support for converting LOperands to assembler types. 71 // Support for converting LOperands to assembler types.
72 Register ToRegister(LOperand* op) const; 72 Register ToRegister(LOperand* op) const;
73 XMMRegister ToDoubleRegister(LOperand* op) const; 73 XMMRegister ToDoubleRegister(LOperand* op) const;
74 bool IsInteger32Constant(LConstantOperand* op) const; 74 bool IsInteger32Constant(LConstantOperand* op) const;
75 int ToInteger32(LConstantOperand* op) const; 75 int ToInteger32(LConstantOperand* op) const;
76 bool IsTaggedConstant(LConstantOperand* op) const; 76 bool IsTaggedConstant(LConstantOperand* op) const;
77 Handle<Object> ToHandle(LConstantOperand* op) const; 77 Handle<Object> ToHandle(LConstantOperand* op) const;
78 Operand ToOperand(LOperand* op) const; 78 Operand ToOperand(LOperand* op) const;
79 79
80
81 // Try to generate code for the entire chunk, but it may fail if the 80 // Try to generate code for the entire chunk, but it may fail if the
82 // chunk contains constructs we cannot handle. Returns true if the 81 // chunk contains constructs we cannot handle. Returns true if the
83 // code generation attempt succeeded. 82 // code generation attempt succeeded.
84 bool GenerateCode(); 83 bool GenerateCode();
85 84
86 // Finish the code by setting stack height, safepoint, and bailout 85 // Finish the code by setting stack height, safepoint, and bailout
87 // information on it. 86 // information on it.
88 void FinishCode(Handle<Code> code); 87 void FinishCode(Handle<Code> code);
89 88
90 // Deferred code support. 89 // Deferred code support.
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 private: 299 private:
301 LCodeGen* codegen_; 300 LCodeGen* codegen_;
302 Label entry_; 301 Label entry_;
303 Label exit_; 302 Label exit_;
304 Label* external_exit_; 303 Label* external_exit_;
305 }; 304 };
306 305
307 } } // namespace v8::internal 306 } } // namespace v8::internal
308 307
309 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 308 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698