source: webkit/trunk/JavaScriptCore/kjs/AllInOneFile.cpp@ 24714

Last change on this file since 24714 was 21064, checked in by mjs, 18 years ago

Reviewed by Geoff.


  • compile most of JavaScriptCore as one file for 4% JS iBench speed improvement
  • JavaScriptCore.xcodeproj/project.pbxproj: Add AllInOneFile.cpp, and remove files it includes from the build.
  • kjs/AllInOneFile.cpp: Added.
  • kjs/dtoa.cpp: Renamed CONST to CONST_ to avoid conflict. (Bigint::): (Bigint::nrv_alloc):
  • kjs/lookup.cpp: Use "namspace KJS { ... }" instead of "using namespace KJS;"
File size: 2.1 KB
Line 
1// -*- mode: c++; c-basic-offset: 4 -*-
2/*
3 * Copyright (C) 2006 Apple Computer, Inc
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 *
20 */
21
22// This file exists to help compile the essential code of
23// JavaScriptCore all as one file, for compilers and build systems
24// that see a significant speed gain from this.
25
26#define KDE_USE_FINAL 1
27
28#include "function.cpp"
29#include "debugger.cpp"
30#include "array_object.cpp"
31#include "bool_object.cpp"
32#include "collector.cpp"
33#include "CommonIdentifiers.cpp"
34#include "Context.cpp"
35#include "date_object.cpp"
36#include "DateMath.cpp"
37#include "dtoa.cpp"
38#include "error_object.cpp"
39#include "ExecState.cpp"
40#include "function_object.cpp"
41#include "grammar.cpp"
42#include "identifier.cpp"
43#include "internal.cpp"
44#include "interpreter.cpp"
45#include "JSImmediate.cpp"
46#include "JSLock.cpp"
47#include "JSWrapperObject.cpp"
48#include "lexer.cpp"
49#include "list.cpp"
50#include "lookup.cpp"
51#include "math_object.cpp"
52#include "nodes.cpp"
53#include "nodes2string.cpp"
54#include "number_object.cpp"
55#include "object.cpp"
56#include "object_object.cpp"
57#include "operations.cpp"
58#include "Parser.cpp"
59#include "property_map.cpp"
60#include "property_slot.cpp"
61#include "PropertyNameArray.cpp"
62#include "regexp.cpp"
63#include "regexp_object.cpp"
64#include "scope_chain.cpp"
65#include "string_object.cpp"
66#include "ustring.cpp"
67#include "value.cpp"
68#include "wtf/FastMalloc.cpp"
69#include "wtf/TCSystemAlloc.cpp"
Note: See TracBrowser for help on using the repository browser.