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

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

Issue 2137203002: [intrinsics] Remove obsolete intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really nuke TO_NAME. Created 4 years, 5 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
« no previous file with comments | « src/debug/mirrors.js ('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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 F(ClassOf) \ 520 F(ClassOf) \
521 F(StringCharCodeAt) \ 521 F(StringCharCodeAt) \
522 F(SubString) \ 522 F(SubString) \
523 F(RegExpExec) \ 523 F(RegExpExec) \
524 F(RegExpConstructResult) \ 524 F(RegExpConstructResult) \
525 F(ToInteger) \ 525 F(ToInteger) \
526 F(NumberToString) \ 526 F(NumberToString) \
527 F(ToString) \ 527 F(ToString) \
528 F(ToLength) \ 528 F(ToLength) \
529 F(ToNumber) \ 529 F(ToNumber) \
530 F(ToName) \
531 F(ToObject) \ 530 F(ToObject) \
532 F(DebugIsActive) \ 531 F(DebugIsActive) \
533 F(CreateIterResultObject) 532 F(CreateIterResultObject)
534 533
535 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); 534 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call);
536 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) 535 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION)
537 #undef GENERATOR_DECLARATION 536 #undef GENERATOR_DECLARATION
538 537
539 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable); 538 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable);
540 539
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 Address start_; 1056 Address start_;
1058 Address instruction_start_; 1057 Address instruction_start_;
1059 uint32_t length_; 1058 uint32_t length_;
1060 }; 1059 };
1061 1060
1062 1061
1063 } // namespace internal 1062 } // namespace internal
1064 } // namespace v8 1063 } // namespace v8
1065 1064
1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1065 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/debug/mirrors.js ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698