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

Side by Side Diff: src/full-codegen/full-codegen.h

Issue 2448463002: [regexp] Remove unused code (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/ast/ast.h" 10 #include "src/ast/ast.h"
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 F(IsJSProxy) \ 477 F(IsJSProxy) \
478 F(Call) \ 478 F(Call) \
479 F(NewObject) \ 479 F(NewObject) \
480 F(IsJSReceiver) \ 480 F(IsJSReceiver) \
481 F(GetSuperConstructor) \ 481 F(GetSuperConstructor) \
482 F(DebugBreakInOptimizedCode) \ 482 F(DebugBreakInOptimizedCode) \
483 F(ClassOf) \ 483 F(ClassOf) \
484 F(StringCharCodeAt) \ 484 F(StringCharCodeAt) \
485 F(SubString) \ 485 F(SubString) \
486 F(RegExpExec) \ 486 F(RegExpExec) \
487 F(RegExpConstructResult) \
488 F(ToInteger) \ 487 F(ToInteger) \
489 F(NumberToString) \ 488 F(NumberToString) \
490 F(ToString) \ 489 F(ToString) \
491 F(ToLength) \ 490 F(ToLength) \
492 F(ToNumber) \ 491 F(ToNumber) \
493 F(ToObject) \ 492 F(ToObject) \
494 F(DebugIsActive) \ 493 F(DebugIsActive) \
495 F(CreateIterResultObject) 494 F(CreateIterResultObject)
496 495
497 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); 496 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call);
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 Address start_; 1020 Address start_;
1022 Address instruction_start_; 1021 Address instruction_start_;
1023 uint32_t length_; 1022 uint32_t length_;
1024 }; 1023 };
1025 1024
1026 1025
1027 } // namespace internal 1026 } // namespace internal
1028 } // namespace v8 1027 } // namespace v8
1029 1028
1030 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1029 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698