Home
last modified time | relevance | path

Searched refs:FunctionEntry (Results 1 – 15 of 15) sorted by relevance

/external/v8/tools/
Dprofile.js160 func = new Profile.FunctionEntry(name);
432 if (entries[i][1].constructor === Profile.FunctionEntry) {
442 if (entries[i][1].constructor === Profile.FunctionEntry &&
539 Profile.FunctionEntry = function(name) { class in Profile
547 Profile.FunctionEntry.prototype.getName = function() {
558 Profile.FunctionEntry.prototype.toString = CodeMap.CodeEntry.prototype.toString;
/external/v8/src/parsing/
Dparser.h212 class FunctionEntry BASE_EMBEDDED {
225 explicit FunctionEntry(Vector<unsigned> backing) in FunctionEntry() function
228 FunctionEntry() : backing_() { } in FunctionEntry() function
260 FunctionEntry GetFunctionEntry(int start);
Dparser.cc98 FunctionEntry ParseData::GetFunctionEntry(int start) { in GetFunctionEntry()
101 if ((function_index_ + FunctionEntry::kSize <= Length()) && in GetFunctionEntry()
104 function_index_ += FunctionEntry::kSize; in GetFunctionEntry()
105 Vector<unsigned> subvector(&(Data()[index]), FunctionEntry::kSize); in GetFunctionEntry()
106 return FunctionEntry(subvector); in GetFunctionEntry()
108 return FunctionEntry(); in GetFunctionEntry()
115 if (functions_size % FunctionEntry::kSize != 0) return 0; in FunctionCount()
116 return functions_size / FunctionEntry::kSize; in FunctionCount()
132 if (functions_size % FunctionEntry::kSize != 0) return false; in IsSane()
4359 FunctionEntry entry = in SkipLazyFunctionBody()
/external/v8/src/
Dutils.h1095 static BailoutId FunctionEntry() { return BailoutId(kFunctionEntryId); }
/external/v8/test/cctest/
Dtest-parsing.cc486 i::FunctionEntry entry1 = pd->GetFunctionEntry(first_lbrace); in TEST()
494 i::FunctionEntry entry2 = pd->GetFunctionEntry(second_lbrace); in TEST()
/external/v8/src/compiler/
Dast-graph-builder.cc607 PrepareFrameState(node, BailoutId::FunctionEntry()); in CreateGraphBody()
/external/v8/src/full-codegen/x87/
Dfull-codegen-x87.cc316 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/arm64/
Dfull-codegen-arm64.cc329 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/mips/
Dfull-codegen-mips.cc337 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/ia32/
Dfull-codegen-ia32.cc319 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/x64/
Dfull-codegen-x64.cc317 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/arm/
Dfull-codegen-arm.cc326 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/mips64/
Dfull-codegen-mips64.cc334 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/full-codegen/ppc/
Dfull-codegen-ppc.cc331 PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); in Generate()
/external/v8/src/crankshaft/
Dhydrogen.cc4458 body_entry->SetJoinId(BailoutId::FunctionEntry()); in BuildGraph()
13240 inner->set_ast_id(BailoutId::FunctionEntry()); in CopyForInlining()