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/hydrogen.h

Issue 7039036: Fix calls of strict mode function with an implicit receiver. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix presubmit Created 9 years, 7 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
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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 HEnvironment* CopyAsLoopHeader(HBasicBlock* block) const; 397 HEnvironment* CopyAsLoopHeader(HBasicBlock* block) const;
398 398
399 // Create an "inlined version" of this environment, where the original 399 // Create an "inlined version" of this environment, where the original
400 // environment is the outer environment but the top expression stack 400 // environment is the outer environment but the top expression stack
401 // elements are moved to an inner environment as parameters. If 401 // elements are moved to an inner environment as parameters. If
402 // is_speculative, the argument values are expected to be PushArgument 402 // is_speculative, the argument values are expected to be PushArgument
403 // instructions, otherwise they are the actual values. 403 // instructions, otherwise they are the actual values.
404 HEnvironment* CopyForInlining(Handle<JSFunction> target, 404 HEnvironment* CopyForInlining(Handle<JSFunction> target,
405 FunctionLiteral* function, 405 FunctionLiteral* function,
406 CompilationPhase compilation_phase, 406 CompilationPhase compilation_phase,
407 HConstant* undefined) const; 407 HConstant* undefined,
408 ReceiverType receiver_type) const;
408 409
409 void AddIncomingEdge(HBasicBlock* block, HEnvironment* other); 410 void AddIncomingEdge(HBasicBlock* block, HEnvironment* other);
410 411
411 void ClearHistory() { 412 void ClearHistory() {
412 pop_count_ = 0; 413 pop_count_ = 0;
413 push_count_ = 0; 414 push_count_ = 0;
414 assigned_variables_.Rewind(0); 415 assigned_variables_.Rewind(0);
415 } 416 }
416 417
417 void SetValueAt(int index, HValue* value) { 418 void SetValueAt(int index, HValue* value) {
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
1197 const char* filename_; 1198 const char* filename_;
1198 HeapStringAllocator string_allocator_; 1199 HeapStringAllocator string_allocator_;
1199 StringStream trace_; 1200 StringStream trace_;
1200 int indent_; 1201 int indent_;
1201 }; 1202 };
1202 1203
1203 1204
1204 } } // namespace v8::internal 1205 } } // namespace v8::internal
1205 1206
1206 #endif // V8_HYDROGEN_H_ 1207 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen.h ('k') | src/hydrogen.cc » ('j') | src/ia32/builtins-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698