Remove duplicates in runtime macros.
Each item in INLINE_RUNTIME_FUNCTION_LIST had to have a duplicate entry in RUNTIME_FUNCTION_LIST in order to match the comment. R=svenpanne@chromium.org Review URL: https://codereview.chromium.org/177313005 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19703 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
bd1fb97d5c
commit
8472e0f02b
@ -905,7 +905,6 @@ void FullCodeGenerator::SetSourcePosition(int pos) {
|
||||
const FullCodeGenerator::InlineFunctionGenerator
|
||||
FullCodeGenerator::kInlineFunctionGenerators[] = {
|
||||
INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
|
||||
};
|
||||
#undef INLINE_FUNCTION_GENERATOR_ADDRESS
|
||||
|
||||
|
@ -497,7 +497,6 @@ class FullCodeGenerator: public AstVisitor {
|
||||
#define EMIT_INLINE_RUNTIME_CALL(name, x, y) \
|
||||
void Emit##name(CallRuntime* expr);
|
||||
INLINE_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL)
|
||||
#undef EMIT_INLINE_RUNTIME_CALL
|
||||
|
||||
// Platform-specific code for resuming generators.
|
||||
|
@ -8387,7 +8387,6 @@ void HOptimizedGraphBuilder::VisitCallNew(CallNew* expr) {
|
||||
const HOptimizedGraphBuilder::InlineFunctionGenerator
|
||||
HOptimizedGraphBuilder::kInlineFunctionGenerators[] = {
|
||||
INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_ADDRESS)
|
||||
};
|
||||
#undef INLINE_FUNCTION_GENERATOR_ADDRESS
|
||||
|
||||
|
@ -2119,7 +2119,6 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
||||
void Generate##Name(CallRuntime* call);
|
||||
|
||||
INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
|
||||
#undef INLINE_FUNCTION_GENERATOR_DECLARATION
|
||||
|
||||
void VisitDelete(UnaryOperation* expr);
|
||||
|
@ -14461,8 +14461,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ListNatives) {
|
||||
#define COUNT_ENTRY(Name, argc, ressize) + 1
|
||||
int entry_count = 0
|
||||
RUNTIME_FUNCTION_LIST(COUNT_ENTRY)
|
||||
INLINE_FUNCTION_LIST(COUNT_ENTRY)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(COUNT_ENTRY);
|
||||
INLINE_FUNCTION_LIST(COUNT_ENTRY);
|
||||
#undef COUNT_ENTRY
|
||||
Factory* factory = isolate->factory();
|
||||
Handle<FixedArray> elements = factory->NewFixedArray(entry_count);
|
||||
@ -14490,7 +14489,6 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ListNatives) {
|
||||
RUNTIME_FUNCTION_LIST(ADD_ENTRY)
|
||||
inline_runtime_functions = true;
|
||||
INLINE_FUNCTION_LIST(ADD_ENTRY)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(ADD_ENTRY)
|
||||
#undef ADD_ENTRY
|
||||
ASSERT_EQ(index, entry_count);
|
||||
Handle<JSArray> result = factory->NewJSArrayWithElements(elements);
|
||||
@ -14854,9 +14852,11 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_MaxSmi) {
|
||||
static const Runtime::Function kIntrinsicFunctions[] = {
|
||||
RUNTIME_FUNCTION_LIST(F)
|
||||
INLINE_FUNCTION_LIST(I)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(I)
|
||||
};
|
||||
|
||||
#undef I
|
||||
#undef F
|
||||
|
||||
|
||||
MaybeObject* Runtime::InitializeIntrinsicFunctionNames(Heap* heap,
|
||||
Object* dictionary) {
|
||||
|
@ -131,7 +131,6 @@ namespace internal {
|
||||
F(URIEscape, 1, 1) \
|
||||
F(URIUnescape, 1, 1) \
|
||||
\
|
||||
F(NumberToString, 1, 1) \
|
||||
F(NumberToStringSkipCache, 1, 1) \
|
||||
F(NumberToInteger, 1, 1) \
|
||||
F(NumberToPositiveInteger, 1, 1) \
|
||||
@ -151,7 +150,6 @@ namespace internal {
|
||||
F(NumberAlloc, 0, 1) \
|
||||
F(NumberImul, 2, 1) \
|
||||
\
|
||||
F(StringAdd, 2, 1) \
|
||||
F(StringBuilderConcat, 3, 1) \
|
||||
F(StringBuilderJoin, 3, 1) \
|
||||
F(SparseJoinWithSeparator, 3, 1) \
|
||||
@ -171,7 +169,6 @@ namespace internal {
|
||||
\
|
||||
F(NumberCompare, 3, 1) \
|
||||
F(SmiLexicographicCompare, 2, 1) \
|
||||
F(StringCompare, 2, 1) \
|
||||
\
|
||||
/* Math */ \
|
||||
F(Math_acos, 1, 1) \
|
||||
@ -190,10 +187,8 @@ namespace internal {
|
||||
\
|
||||
/* Regular expressions */ \
|
||||
F(RegExpCompile, 3, 1) \
|
||||
F(RegExpExec, 4, 1) \
|
||||
F(RegExpExecMultiple, 4, 1) \
|
||||
F(RegExpInitializeObject, 5, 1) \
|
||||
F(RegExpConstructResult, 3, 1) \
|
||||
\
|
||||
/* JSON */ \
|
||||
F(ParseJson, 1, 1) \
|
||||
@ -201,11 +196,9 @@ namespace internal {
|
||||
F(QuoteJSONString, 1, 1) \
|
||||
\
|
||||
/* Strings */ \
|
||||
F(StringCharCodeAt, 2, 1) \
|
||||
F(StringIndexOf, 3, 1) \
|
||||
F(StringLastIndexOf, 3, 1) \
|
||||
F(StringLocaleCompare, 2, 1) \
|
||||
F(SubString, 3, 1) \
|
||||
F(StringReplaceGlobalRegExpWithString, 4, 1) \
|
||||
F(StringReplaceOneCharWithString, 3, 1) \
|
||||
F(StringMatch, 3, 1) \
|
||||
@ -248,7 +241,6 @@ namespace internal {
|
||||
F(GetAndClearOverflowedStackTrace, 1, 1) \
|
||||
F(GetV8Version, 0, 1) \
|
||||
\
|
||||
F(ClassOf, 1, 1) \
|
||||
F(SetCode, 2, 1) \
|
||||
F(SetExpectedNumberOfProperties, 2, 1) \
|
||||
\
|
||||
@ -447,12 +439,8 @@ namespace internal {
|
||||
F(TraceExit, 1, 1) \
|
||||
F(Abort, 1, 1) \
|
||||
F(AbortJS, 1, 1) \
|
||||
/* Logging */ \
|
||||
F(Log, 2, 1) \
|
||||
/* ES5 */ \
|
||||
F(LocalKeys, 1, 1) \
|
||||
/* Cache suport */ \
|
||||
F(GetFromCache, 2, 1) \
|
||||
\
|
||||
/* Message objects */ \
|
||||
F(MessageGetStartPosition, 1, 1) \
|
||||
@ -610,7 +598,8 @@ namespace internal {
|
||||
RUNTIME_FUNCTION_LIST_ALWAYS_2(F) \
|
||||
RUNTIME_FUNCTION_LIST_DEBUG(F) \
|
||||
RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \
|
||||
RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F)
|
||||
RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) \
|
||||
INLINE_RUNTIME_FUNCTION_LIST(F)
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// INLINE_FUNCTION_LIST defines all inlined functions accessed
|
||||
@ -647,7 +636,8 @@ namespace internal {
|
||||
F(FastAsciiArrayJoin, 2, 1) \
|
||||
F(GeneratorNext, 2, 1) \
|
||||
F(GeneratorThrow, 2, 1) \
|
||||
F(DebugBreakInOptimizedCode, 0, 1)
|
||||
F(DebugBreakInOptimizedCode, 0, 1) \
|
||||
INLINE_RUNTIME_FUNCTION_LIST(F)
|
||||
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -721,7 +711,6 @@ class Runtime : public AllStatic {
|
||||
#undef F
|
||||
#define F(name, nargs, ressize) kInline##name,
|
||||
INLINE_FUNCTION_LIST(F)
|
||||
INLINE_RUNTIME_FUNCTION_LIST(F)
|
||||
#undef F
|
||||
kNumFunctions,
|
||||
kFirstInlineFunction = kInlineIsSmi
|
||||
|
Loading…
Reference in New Issue
Block a user