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

Side by Side Diff: src/deoptimizer.h

Issue 7147014: Fix building in release mode with disassembler=on (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: modify #ifdefs instead of SConstruct Created 9 years, 6 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 | src/deoptimizer.cc » ('j') | src/objects.cc » ('J')
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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 void StoreDoubleRegister(DoubleRegister reg); 488 void StoreDoubleRegister(DoubleRegister reg);
489 void StoreStackSlot(int index); 489 void StoreStackSlot(int index);
490 void StoreInt32StackSlot(int index); 490 void StoreInt32StackSlot(int index);
491 void StoreDoubleStackSlot(int index); 491 void StoreDoubleStackSlot(int index);
492 void StoreLiteral(int literal_id); 492 void StoreLiteral(int literal_id);
493 void StoreArgumentsObject(); 493 void StoreArgumentsObject();
494 void MarkDuplicate(); 494 void MarkDuplicate();
495 495
496 static int NumberOfOperandsFor(Opcode opcode); 496 static int NumberOfOperandsFor(Opcode opcode);
497 497
498 #ifdef OBJECT_PRINT 498 #if defined(OBJECT_PRINT) || defined(ENABLE_DISASSEMBLER)
499 static const char* StringFor(Opcode opcode); 499 static const char* StringFor(Opcode opcode);
500 #endif 500 #endif
501 501
502 private: 502 private:
503 TranslationBuffer* buffer_; 503 TranslationBuffer* buffer_;
504 int index_; 504 int index_;
505 }; 505 };
506 506
507 507
508 // Linked list holding deoptimizing code objects. The deoptimizing code objects 508 // Linked list holding deoptimizing code objects. The deoptimizing code objects
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 593
594 static SlotRef ComputeSlotForNextArgument(TranslationIterator* iterator, 594 static SlotRef ComputeSlotForNextArgument(TranslationIterator* iterator,
595 DeoptimizationInputData* data, 595 DeoptimizationInputData* data,
596 JavaScriptFrame* frame); 596 JavaScriptFrame* frame);
597 }; 597 };
598 598
599 599
600 } } // namespace v8::internal 600 } } // namespace v8::internal
601 601
602 #endif // V8_DEOPTIMIZER_H_ 602 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « no previous file | src/deoptimizer.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698