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

Side by Side Diff: src/compiler.h

Issue 7787028: Use the BitField class for Code::Flags. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/ia32/ic-ia32.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class CompilationInfo BASE_EMBEDDED { 42 class CompilationInfo BASE_EMBEDDED {
43 public: 43 public:
44 explicit CompilationInfo(Handle<Script> script); 44 explicit CompilationInfo(Handle<Script> script);
45 explicit CompilationInfo(Handle<SharedFunctionInfo> shared_info); 45 explicit CompilationInfo(Handle<SharedFunctionInfo> shared_info);
46 explicit CompilationInfo(Handle<JSFunction> closure); 46 explicit CompilationInfo(Handle<JSFunction> closure);
47 47
48 Isolate* isolate() { 48 Isolate* isolate() {
49 ASSERT(Isolate::Current() == isolate_); 49 ASSERT(Isolate::Current() == isolate_);
50 return isolate_; 50 return isolate_;
51 } 51 }
52 bool is_lazy() const { return (flags_ & IsLazy::mask()) != 0; } 52 bool is_lazy() const { return IsLazy::decode(flags_); }
53 bool is_eval() const { return (flags_ & IsEval::mask()) != 0; } 53 bool is_eval() const { return IsEval::decode(flags_); }
54 bool is_global() const { return (flags_ & IsGlobal::mask()) != 0; } 54 bool is_global() const { return IsGlobal::decode(flags_); }
55 bool is_strict_mode() const { return (flags_ & IsStrictMode::mask()) != 0; } 55 bool is_strict_mode() const { return IsStrictMode::decode(flags_); }
56 bool is_in_loop() const { return (flags_ & IsInLoop::mask()) != 0; } 56 bool is_in_loop() const { return IsInLoop::decode(flags_); }
57 FunctionLiteral* function() const { return function_; } 57 FunctionLiteral* function() const { return function_; }
58 Scope* scope() const { return scope_; } 58 Scope* scope() const { return scope_; }
59 Handle<Code> code() const { return code_; } 59 Handle<Code> code() const { return code_; }
60 Handle<JSFunction> closure() const { return closure_; } 60 Handle<JSFunction> closure() const { return closure_; }
61 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } 61 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; }
62 Handle<Script> script() const { return script_; } 62 Handle<Script> script() const { return script_; }
63 v8::Extension* extension() const { return extension_; } 63 v8::Extension* extension() const { return extension_; }
64 ScriptDataImpl* pre_parse_data() const { return pre_parse_data_; } 64 ScriptDataImpl* pre_parse_data() const { return pre_parse_data_; }
65 Handle<Context> calling_context() const { return calling_context_; } 65 Handle<Context> calling_context() const { return calling_context_; }
66 int osr_ast_id() const { return osr_ast_id_; } 66 int osr_ast_id() const { return osr_ast_id_; }
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 298
299 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, 299 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag,
300 CompilationInfo* info, 300 CompilationInfo* info,
301 Handle<SharedFunctionInfo> shared); 301 Handle<SharedFunctionInfo> shared);
302 }; 302 };
303 303
304 304
305 } } // namespace v8::internal 305 } } // namespace v8::internal
306 306
307 #endif // V8_COMPILER_H_ 307 #endif // V8_COMPILER_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698