Home
last modified time | relevance | path

Searched refs:AddCode (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/
Dgdb-jit.h111 static void AddCode(const char* name,
116 static void AddCode(Handle<String> name,
120 static void AddCode(CodeTag tag, String* name, Code* code);
122 static void AddCode(CodeTag tag, const char* name, Code* code);
124 static void AddCode(CodeTag tag, Code* code);
Dstub-cache.cc131 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, cache_name, Code::cast(code))); in ComputeLoadNonexistent()
157 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, name, Code::cast(code))); in ComputeLoadField()
184 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, name, Code::cast(code))); in ComputeLoadCallback()
211 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, name, Code::cast(code))); in ComputeLoadConstant()
236 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, name, Code::cast(code))); in ComputeLoadInterceptor()
271 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, name, Code::cast(code))); in ComputeLoadGlobal()
297 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, name, Code::cast(code))); in ComputeKeyedLoadField()
324 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, name, Code::cast(code))); in ComputeKeyedLoadConstant()
350 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, name, Code::cast(code))); in ComputeKeyedLoadInterceptor()
377 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, name, Code::cast(code))); in ComputeKeyedLoadCallback()
[all …]
Dgdb-jit.cc1395 void GDBJITInterface::AddCode(Handle<String> name, in AddCode() function in v8::internal::GDBJITInterface
1405 AddCode(*name_cstring, *code, GDBJITInterface::FUNCTION, *script); in AddCode()
1407 AddCode("", *code, GDBJITInterface::FUNCTION, *script); in AddCode()
1451 void GDBJITInterface::AddCode(const char* name, in AddCode() function in v8::internal::GDBJITInterface
1488 void GDBJITInterface::AddCode(GDBJITInterface::CodeTag tag, in AddCode() function in v8::internal::GDBJITInterface
1504 AddCode(builder.Finalize(), code, tag); in AddCode()
1508 void GDBJITInterface::AddCode(GDBJITInterface::CodeTag tag, in AddCode() function in v8::internal::GDBJITInterface
1512 AddCode(tag, name != NULL ? *name->ToCString(DISALLOW_NULLS) : NULL, code); in AddCode()
1516 void GDBJITInterface::AddCode(GDBJITInterface::CodeTag tag, Code* code) { in AddCode() function in v8::internal::GDBJITInterface
1519 AddCode(tag, "", code); in AddCode()
Dcpu-profiler-inl.h43 code_map->AddCode(start, entry, size); in UpdateCodeMap()
Dprofile-generator-inl.h83 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) { in AddCode() function
Dcompiler.cc429 GDBJIT(AddCode(Handle<String>(String::cast(script->name())), in MakeFunctionInfo()
440 GDBJIT(AddCode(Handle<String>(), script, info->code())); in MakeFunctionInfo()
794 GDBJIT(AddCode(Handle<String>(shared->DebugName()), in RecordFunctionCompilation()
Dcode-stubs.cc68 GDBJIT(AddCode(GDBJITInterface::STUB, GetName(), code)); in RecordCodeGeneration()
Dprofile-generator.h242 INLINE(void AddCode(Address addr, CodeEntry* entry, unsigned size));
Dbuiltins.cc1641 GDBJIT(AddCode(GDBJITInterface::BUILTIN, in Setup()
/external/v8/test/cctest/
Dtest-profile-generator.cc522 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); in TEST()
523 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); in TEST()
524 code_map.AddCode(ToAddress(0x1900), &entry3, 0x50); in TEST()
525 code_map.AddCode(ToAddress(0x1950), &entry4, 0x10); in TEST()
552 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); in TEST()
553 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); in TEST()
593 generator.code_map()->AddCode(ToAddress(0x1500), entry1, 0x200); in TEST()
594 generator.code_map()->AddCode(ToAddress(0x1700), entry2, 0x100); in TEST()
595 generator.code_map()->AddCode(ToAddress(0x1900), entry3, 0x50); in TEST()