/external/chromium_org/v8/src/ |
gdb-jit.h | 115 static void AddCode(const char* name, 121 static void AddCode(Handle<Name> name, 126 static void AddCode(CodeTag tag, Name* name, Code* code); 128 static void AddCode(CodeTag tag, const char* name, Code* code); 130 static void AddCode(CodeTag tag, Code* code);
|
cpu-profiler-inl.h | 42 code_map->AddCode(start, entry, size);
|
gdb-jit.cc | [all...] |
stub-cache.cc | 297 GDBJIT(AddCode(GDBJITInterface::CALL_IC, *name, *code)); 339 GDBJIT(AddCode(GDBJITInterface::CALL_IC, *name, *code)); 377 GDBJIT(AddCode(GDBJITInterface::CALL_IC, *name, *code)); 403 GDBJIT(AddCode(GDBJITInterface::CALL_IC, *name, *code)); [all...] |
profile-generator.h | 236 void AddCode(Address addr, CodeEntry* entry, unsigned size);
|
profile-generator.cc | 385 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) { 445 AddCode(to, entry.entry, entry.size);
|
compiler.cc | 719 GDBJIT(AddCode(Handle<String>(String::cast(script->name())), 732 GDBJIT(AddCode(Handle<String>(), script, info->code(), info)); [all...] |
code-stubs.cc | 84 GDBJIT(AddCode(GDBJITInterface::STUB, *name, code));
|
builtins.cc | [all...] |
/external/v8/src/ |
gdb-jit.h | 115 static void AddCode(const char* name, 121 static void AddCode(Handle<String> name, 126 static void AddCode(CodeTag tag, String* name, Code* code); 128 static void AddCode(CodeTag tag, const char* name, Code* code); 130 static void AddCode(CodeTag tag, Code* code);
|
cpu-profiler-inl.h | 42 code_map->AddCode(start, entry, size);
|
stub-cache.cc | 129 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *cache_name, *code)); 148 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *name, *code)); 168 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *name, *code)); 188 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *name, *code)); 206 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *name, *code)); 231 GDBJIT(AddCode(GDBJITInterface::LOAD_IC, *name, *code)); 250 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, *name, *code)); 270 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, *name, *code)); 288 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, *name, *code)); 309 GDBJIT(AddCode(GDBJITInterface::KEYED_LOAD_IC, *name, *code)) [all...] |
gdb-jit.cc | [all...] |
compiler.cc | 436 GDBJIT(AddCode(Handle<String>(String::cast(script->name())), 448 GDBJIT(AddCode(Handle<String>(), script, info->code(), info)); 820 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
|
code-stubs.cc | 81 GDBJIT(AddCode(GDBJITInterface::STUB, *name, code));
|
profile-generator.h | 245 void AddCode(Address addr, CodeEntry* entry, unsigned size); [all...] |
builtins.cc | [all...] |
profile-generator.cc | 501 void CodeMap::AddCode(Address addr, CodeEntry* entry, unsigned size) { 557 AddCode(to, entry.entry, entry.size); [all...] |
/external/chromium_org/v8/test/cctest/ |
test-profile-generator.cc | 339 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); 340 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); 341 code_map.AddCode(ToAddress(0x1900), &entry3, 0x50); 342 code_map.AddCode(ToAddress(0x1950), &entry4, 0x10); 367 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); 368 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); 375 code_map.AddCode(ToAddress(0x1750), &entry3, 0x100); 408 generator.code_map()->AddCode(ToAddress(0x1500), entry1, 0x200); 409 generator.code_map()->AddCode(ToAddress(0x1700), entry2, 0x100); 410 generator.code_map()->AddCode(ToAddress(0x1900), entry3, 0x50) [all...] |
/external/v8/test/cctest/ |
test-profile-generator.cc | 518 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); 519 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); 520 code_map.AddCode(ToAddress(0x1900), &entry3, 0x50); 521 code_map.AddCode(ToAddress(0x1950), &entry4, 0x10); 548 code_map.AddCode(ToAddress(0x1500), &entry1, 0x200); 549 code_map.AddCode(ToAddress(0x1700), &entry2, 0x100); 557 code_map.AddCode(ToAddress(0x1750), &entry3, 0x100); 590 generator.code_map()->AddCode(ToAddress(0x1500), entry1, 0x200); 591 generator.code_map()->AddCode(ToAddress(0x1700), entry2, 0x100); 592 generator.code_map()->AddCode(ToAddress(0x1900), entry3, 0x50) [all...] |