/external/vixl/examples/ |
H A D | non-const-visitor.cc | 75 Label code_start, code_end; local 76 masm.Bind(&code_start); 80 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
|
H A D | custom-disassembler.cc | 143 Label code_start, code_end; local 144 masm.Bind(&code_start); 148 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
|
/external/v8/test/cctest/ |
H A D | test-sampler-api.cc | 93 const void* code_start; member in struct:__anon17655::SamplingTestHelper::CodeEventEntry 124 static_cast<const uint8_t*>(entry.code_start) + entry.code_len; 164 entry.code_start = event->code_start; 166 code_entries_.insert(std::make_pair(entry.code_start, entry)); 170 CodeEntries::iterator it = code_entries_.find(event->code_start); 175 entry.code_start = event->new_code_start; 177 code_entries_.insert(std::make_pair(entry.code_start, entry)); 181 code_entries_.erase(event->code_start);
|
H A D | test-api.cc | 14350 CHECK(event->code_start != NULL); 14362 InsertSymbolAt(reinterpret_cast<i::Address>(event->code_start), &info); 14376 reinterpret_cast<i::Address>(event->code_start))); 14641 CHECK(event->code_start != NULL); 14645 event->code_start, i::ComputePointerHash(event->code_start)); 14655 uint32_t hash = i::ComputePointerHash(event->code_start); 14664 code_map->Lookup(event->code_start, hash); 14669 code_map->Remove(event->code_start, hash);
|
/external/v8/src/third_party/vtune/ |
H A D | vtune-jit.cc | 174 jmethod.method_load_address = event->code_start; 191 GetEntries()->find(event->code_start); 213 GetEntries()->erase(event->code_start); 246 GetEntries()->insert(std::pair <void*, void*>(event->code_start, event->user_data));
|
/external/bison/src/ |
H A D | scan-gram.l | 48 code_start = scanner_cursor = loc->start; \ 134 boundary code_start = scanner_cursor; 260 "%{" code_start = loc->start; BEGIN SC_PROLOGUE; 266 code_start = loc->start; 650 loc->start = code_start; 662 unexpected_eof (code_start, "}"); 664 loc->start = code_start; 680 loc->start = code_start; 687 unexpected_eof (code_start, "%}"); 689 loc->start = code_start; [all...] |
H A D | scan-gram.c | 991 code_start = scanner_cursor = loc->start; \ 1322 boundary code_start = scanner_cursor; variable 1784 code_start = loc->start; BEGIN SC_PROLOGUE; variable 1793 code_start = loc->start; 2347 loc->start = code_start; 2365 unexpected_eof (code_start, "}"); 2367 loc->start = code_start; 2384 loc->start = code_start; 2393 unexpected_eof (code_start, "%}"); 2395 loc->start = code_start; [all...] |
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTrampolineHandler.h | 89 code_start(in_code_start) {} 92 lldb::addr_t code_start; member in struct:lldb_private::AppleObjCTrampolineHandler::AppleObjCVTables::VTableDescriptor
|
H A D | AppleObjCTrampolineHandler.cpp | 368 lldb::addr_t this_size = m_descriptors[i + 1].code_start - m_descriptors[i].code_start; 395 if (addr <= (*pos).code_start) 413 s.Printf ("Code start: 0x%" PRIx64 " Flags: %d\n", m_descriptors[i].code_start, m_descriptors[i].flags);
|
/external/v8/src/compiler/ |
H A D | frame-elider.cc | 24 for (int i = block->code_start(); i < block->code_end(); ++i) {
|
H A D | jump-threading.cc | 77 for (int i = block->code_start(); i < block->code_end(); ++i) { 156 for (int i = block->code_start(); i < block->code_end(); ++i) {
|
H A D | instruction.cc | 737 return InstructionAt(block->code_start()); 744 int code_start = static_cast<int>(instructions_.size()); local 745 current_block_->set_code_start(code_start); 752 if (current_block_->code_start() == end) { // Empty block. Insert a nop. 756 DCHECK(current_block_->code_start() >= 0 && 757 current_block_->code_start() < end); 901 os << " instructions: [" << block->code_start() << ", " << block->code_end()
|
H A D | graph-visualizer.cc | 433 if (instruction_block->code_start() >= 0) {
|
H A D | register-allocator-verifier.cc | 486 for (int instr_index = block->code_start(); instr_index < block->code_end();
|
H A D | code-generator.cc | 311 for (int i = block->code_start(); i < block->code_end(); ++i) {
|
H A D | instruction.h | 1212 int32_t code_start() const { return code_start_; }
|
H A D | register-allocator.cc | 1579 code()->GetInstructionBlock(pos.ToInstructionIndex())->code_start() == 3534 LifetimePosition::GapFromInstructionIndex(block->code_start());
|
H A D | instruction-selector.cc | 77 size_t start = instruction_block->code_start();
|
/external/vixl/test/examples/ |
H A D | test-examples.cc | 553 Label code_start, code_end; local 554 masm.Bind(&code_start); 558 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
|
/external/v8/src/ |
H A D | gdb-jit.cc | 482 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { argument 486 code_start, 556 uintptr_t code_start, 565 cmd->vmaddr = code_start; 2178 Address addr = reinterpret_cast<Address>(event->code_start); 2213 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info); 555 WriteSegmentCommand(Writer* w, uintptr_t code_start, uintptr_t code_size) argument
|
H A D | log.cc | 455 event.code_start = code->instruction_start(); 472 event.code_start = from->instruction_start(); 515 event.code_start = code->instruction_start();
|
/external/v8/src/wasm/ |
H A D | wasm-interpreter.cc | 878 const byte* code_start = local 881 AddFunction(function, code_start, code_end); 917 int AddFunction(const WasmFunction* function, const byte* code_start, argument 920 function, AstLocalDecls(zone_), code_start, 921 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end),
|
/external/v8/include/ |
H A D | v8.h | 5335 void* code_start; member in struct:v8::JitCodeEvent
|