X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/93a3786624b2768d89bfa27e46598dc64e2fb70a..ed1e77d3adeb83d26fd1dfb16dd84cabdcefd250:/llint/LLIntOffsetsExtractor.cpp?ds=inline diff --git a/llint/LLIntOffsetsExtractor.cpp b/llint/LLIntOffsetsExtractor.cpp index 0cd2f68..5e16174 100644 --- a/llint/LLIntOffsetsExtractor.cpp +++ b/llint/LLIntOffsetsExtractor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Apple Inc. All rights reserved. + * Copyright (C) 2012, 2015 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -27,6 +27,10 @@ #include "ArrayProfile.h" #include "CodeBlock.h" +#include "CommonSlowPaths.h" +#include "Debugger.h" +#include "DirectArguments.h" +#include "Exception.h" #include "Executable.h" #include "Heap.h" #include "Interpreter.h" @@ -35,22 +39,25 @@ #include "JSCell.h" #include "JSFunction.h" #include "VM.h" +#include "JSEnvironmentRecord.h" #include "JSGlobalObject.h" #include "JSObject.h" -#include "JSPropertyNameIterator.h" #include "JSStack.h" #include "JSString.h" #include "JSTypeInfo.h" -#include "JSVariableObject.h" #include "JumpTable.h" #include "LLIntOfflineAsmConfig.h" #include "MarkedSpace.h" - +#include "ProtoCallFrame.h" #include "Structure.h" #include "StructureChain.h" +#include "TypeProfiler.h" +#include "TypeProfilerLog.h" +#include "VMEntryRecord.h" #include "ValueProfile.h" #include + namespace JSC { #define OFFLINE_ASM_OFFSETOF(clazz, field) (static_cast(OBJECT_OFFSETOF(clazz, field))) @@ -62,7 +69,6 @@ public: const unsigned* LLIntOffsetsExtractor::dummy() { -#if ENABLE(LLINT) // This is a file generated by offlineasm/generate_offsets_extractor.rb, and contains code // to create a table of offsets, sizes, and a header identifying what combination of // Platform.h macros we have set. We include it inside of a method on LLIntOffsetsExtractor @@ -71,9 +77,6 @@ const unsigned* LLIntOffsetsExtractor::dummy() // compiler to kindly step aside and yield to our best intentions. #include "LLIntDesiredOffsets.h" return extractorTable; -#else - return 0; -#endif } } // namespace JSC