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

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

Issue 99053002: Make LCodeGen::RegisterDependentCodeForEmbeddedMaps platform independent. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/arm/lithium-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.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 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 return FLAG_deopt_every_n_times != 0 && !info()->IsStub(); 275 return FLAG_deopt_every_n_times != 0 && !info()->IsStub();
276 } 276 }
277 277
278 void AddToTranslation(LEnvironment* environment, 278 void AddToTranslation(LEnvironment* environment,
279 Translation* translation, 279 Translation* translation,
280 LOperand* op, 280 LOperand* op,
281 bool is_tagged, 281 bool is_tagged,
282 bool is_uint32, 282 bool is_uint32,
283 int* object_index_pointer, 283 int* object_index_pointer,
284 int* dematerialized_index_pointer); 284 int* dematerialized_index_pointer);
285 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
286 void PopulateDeoptimizationData(Handle<Code> code); 285 void PopulateDeoptimizationData(Handle<Code> code);
287 int DefineDeoptimizationLiteral(Handle<Object> literal); 286 int DefineDeoptimizationLiteral(Handle<Object> literal);
288 287
289 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 288 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
290 289
291 Register ToRegister(int index) const; 290 Register ToRegister(int index) const;
292 XMMRegister ToDoubleRegister(int index) const; 291 XMMRegister ToDoubleRegister(int index) const;
293 X87Register ToX87Register(int index) const; 292 X87Register ToX87Register(int index) const;
294 int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const; 293 int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const;
295 int32_t ToInteger32(LConstantOperand* op) const; 294 int32_t ToInteger32(LConstantOperand* op) const;
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 Label exit_; 537 Label exit_;
539 Label* external_exit_; 538 Label* external_exit_;
540 Label done_; 539 Label done_;
541 int instruction_index_; 540 int instruction_index_;
542 LCodeGen::X87Stack x87_stack_; 541 LCodeGen::X87Stack x87_stack_;
543 }; 542 };
544 543
545 } } // namespace v8::internal 544 } } // namespace v8::internal
546 545
547 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 546 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698