HomeSort by relevance Sort by last modified time
    Searched refs:is_eval (Results 1 - 16 of 16) sorted by null

  /external/v8/src/
codegen-inl.h 53 bool CodeGenerator::is_eval() { return info_->is_eval(); } function in class:v8::internal::CodeGenerator
compiler.cc 121 bool is_eval,
136 if (is_eval || is_json) {
142 if (is_eval) {
159 ASSERT(is_eval || is_global);
174 HistogramTimer* rate = is_eval
180 CompilationInfo info(lit, script, is_eval);
196 LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
202 LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
204 OProfileAgent::CreateNativeCodeRegion(is_eval ? "Eval" : "Script",
compiler.h 103 CompilationInfo(FunctionLiteral* literal, Handle<Script> script, bool is_eval)
106 is_eval_(is_eval),
147 bool is_eval() { return is_eval_; } function in class:v8::internal::BASE_EMBEDDED
full-codegen.h 409 bool is_eval() { return info_->is_eval(); } function in class:v8::internal::FullCodeGenerator
scopes.cc 718 bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_; local
721 if (inner_scope->PropagateScopeInfo(calls_eval, is_eval)) {
    [all...]
runtime.cc 731 bool is_eval = Smi::cast(args[2])->value() == 1; local
737 PropertyAttributes base = is_eval ? NONE : DONT_DELETE;
    [all...]
  /external/v8/src/mips/
codegen-mips.h 163 inline bool is_eval();
  /external/v8/src/arm/
codegen-arm.h 205 inline bool is_eval();
full-codegen-arm.cc 657 __ mov(r0, Operand(Smi::FromInt(is_eval() ? 1 : 0)));
    [all...]
codegen-arm.cc     [all...]
  /external/v8/src/ia32/
codegen-ia32.h 345 inline bool is_eval();
    [all...]
full-codegen-ia32.cc 769 __ push(Immediate(Smi::FromInt(is_eval() ? 1 : 0)));
    [all...]
codegen-ia32.cc     [all...]
  /external/v8/src/x64/
codegen-x64.h 345 inline bool is_eval();
full-codegen-x64.cc 772 __ Push(Smi::FromInt(is_eval() ? 1 : 0));
    [all...]
codegen-x64.cc 274 frame_->EmitPush(Smi::FromInt(is_eval() ? 1 : 0));
    [all...]

Completed in 584 milliseconds