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

Side by Side Diff: src/runtime/runtime.cc

Issue 984963002: Intrinsics in the INLINE_FUNCTION_LIST are now avaliable without '_', too. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Platform ports. Created 5 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
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-regexp.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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/runtime/runtime.h" 7 #include "src/runtime/runtime.h"
8 #include "src/runtime/runtime-utils.h" 8 #include "src/runtime/runtime-utils.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 30 matching lines...) Expand all
41 41
42 #define I(name, number_of_args, result_size) \ 42 #define I(name, number_of_args, result_size) \
43 { \ 43 { \
44 Runtime::kInline##name, Runtime::INLINE, "_" #name, \ 44 Runtime::kInline##name, Runtime::INLINE, "_" #name, \
45 FUNCTION_ADDR(Runtime_##name), number_of_args, result_size \ 45 FUNCTION_ADDR(Runtime_##name), number_of_args, result_size \
46 } \ 46 } \
47 , 47 ,
48 48
49 49
50 static const Runtime::Function kIntrinsicFunctions[] = { 50 static const Runtime::Function kIntrinsicFunctions[] = {
51 RUNTIME_FUNCTION_LIST(F) INLINE_OPTIMIZED_FUNCTION_LIST(F) 51 RUNTIME_FUNCTION_LIST(F) INLINE_FUNCTION_LIST(F)
52 INLINE_FUNCTION_LIST(I) INLINE_OPTIMIZED_FUNCTION_LIST(I)}; 52 INLINE_OPTIMIZED_FUNCTION_LIST(F) INLINE_FUNCTION_LIST(I)
53 INLINE_OPTIMIZED_FUNCTION_LIST(I)};
53 54
54 #undef I 55 #undef I
55 #undef F 56 #undef F
56 57
57 58
58 void Runtime::InitializeIntrinsicFunctionNames(Isolate* isolate, 59 void Runtime::InitializeIntrinsicFunctionNames(Isolate* isolate,
59 Handle<NameDictionary> dict) { 60 Handle<NameDictionary> dict) {
60 DCHECK(dict->NumberOfElements() == 0); 61 DCHECK(dict->NumberOfElements() == 0);
61 HandleScope scope(isolate); 62 HandleScope scope(isolate);
62 for (int i = 0; i < kNumFunctions; ++i) { 63 for (int i = 0; i < kNumFunctions; ++i) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 return &(kIntrinsicFunctions[static_cast<int>(id)]); 98 return &(kIntrinsicFunctions[static_cast<int>(id)]);
98 } 99 }
99 100
100 101
101 std::ostream& operator<<(std::ostream& os, Runtime::FunctionId id) { 102 std::ostream& operator<<(std::ostream& os, Runtime::FunctionId id) {
102 return os << Runtime::FunctionForId(id)->name; 103 return os << Runtime::FunctionForId(id)->name;
103 } 104 }
104 105
105 } // namespace internal 106 } // namespace internal
106 } // namespace v8 107 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698