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

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

Issue 204353003: Merged r19834, r19843 into 3.23 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.23
Patch Set: Created 6 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/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-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 2749 matching lines...) Expand 10 before | Expand all | Expand 10 after
2760 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2760 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2761 : chunk_(NULL), 2761 : chunk_(NULL),
2762 info_(info), 2762 info_(info),
2763 graph_(graph), 2763 graph_(graph),
2764 zone_(graph->zone()), 2764 zone_(graph->zone()),
2765 status_(UNUSED), 2765 status_(UNUSED),
2766 current_instruction_(NULL), 2766 current_instruction_(NULL),
2767 current_block_(NULL), 2767 current_block_(NULL),
2768 next_block_(NULL), 2768 next_block_(NULL),
2769 argument_count_(0), 2769 argument_count_(0),
2770 allocator_(allocator), 2770 allocator_(allocator) { }
2771 instruction_pending_deoptimization_environment_(NULL),
2772 pending_deoptimization_ast_id_(BailoutId::None()) { }
2773 2771
2774 // Build the sequence for the graph. 2772 // Build the sequence for the graph.
2775 LPlatformChunk* Build(); 2773 LPlatformChunk* Build();
2776 2774
2777 LInstruction* CheckElideControlInstruction(HControlInstruction* instr); 2775 LInstruction* CheckElideControlInstruction(HControlInstruction* instr);
2778 2776
2779 // Declare methods that deal with the individual node types. 2777 // Declare methods that deal with the individual node types.
2780 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node); 2778 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2781 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 2779 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
2782 #undef DECLARE_DO 2780 #undef DECLARE_DO
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
2924 LPlatformChunk* chunk_; 2922 LPlatformChunk* chunk_;
2925 CompilationInfo* info_; 2923 CompilationInfo* info_;
2926 HGraph* const graph_; 2924 HGraph* const graph_;
2927 Zone* zone_; 2925 Zone* zone_;
2928 Status status_; 2926 Status status_;
2929 HInstruction* current_instruction_; 2927 HInstruction* current_instruction_;
2930 HBasicBlock* current_block_; 2928 HBasicBlock* current_block_;
2931 HBasicBlock* next_block_; 2929 HBasicBlock* next_block_;
2932 int argument_count_; 2930 int argument_count_;
2933 LAllocator* allocator_; 2931 LAllocator* allocator_;
2934 LInstruction* instruction_pending_deoptimization_environment_;
2935 BailoutId pending_deoptimization_ast_id_;
2936 2932
2937 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2933 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2938 }; 2934 };
2939 2935
2940 #undef DECLARE_HYDROGEN_ACCESSOR 2936 #undef DECLARE_HYDROGEN_ACCESSOR
2941 #undef DECLARE_CONCRETE_INSTRUCTION 2937 #undef DECLARE_CONCRETE_INSTRUCTION
2942 2938
2943 } } // namespace v8::internal 2939 } } // namespace v8::internal
2944 2940
2945 #endif // V8_IA32_LITHIUM_IA32_H_ 2941 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698