/external/v8/test/cctest/ |
D | test-sampler-api.cc | 93 const void* code_start; member 124 static_cast<const uint8_t*>(entry.code_start) + entry.code_len; in FindEventEntry() 164 entry.code_start = event->code_start; in DoJitCodeEventHandler() 166 code_entries_.insert(std::make_pair(entry.code_start, entry)); in DoJitCodeEventHandler() 170 CodeEntries::iterator it = code_entries_.find(event->code_start); in DoJitCodeEventHandler() 175 entry.code_start = event->new_code_start; in DoJitCodeEventHandler() 177 code_entries_.insert(std::make_pair(entry.code_start, entry)); in DoJitCodeEventHandler() 181 code_entries_.erase(event->code_start); in DoJitCodeEventHandler()
|
D | test-api.cc | 14350 CHECK(event->code_start != NULL); in OnJitEvent() 14362 InsertSymbolAt(reinterpret_cast<i::Address>(event->code_start), &info); in OnJitEvent() 14376 reinterpret_cast<i::Address>(event->code_start))); in OnJitEvent() 14641 CHECK(event->code_start != NULL); in event_handler() 14645 event->code_start, i::ComputePointerHash(event->code_start)); in event_handler() 14655 uint32_t hash = i::ComputePointerHash(event->code_start); in event_handler() 14664 code_map->Lookup(event->code_start, hash); in event_handler() 14669 code_map->Remove(event->code_start, hash); in event_handler()
|
/external/bison/src/ |
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 …]
|
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/vixl/examples/ |
D | non-const-visitor.cc | 75 Label code_start, code_end; in main() local 76 masm.Bind(&code_start); in main() 80 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in main()
|
D | custom-disassembler.cc | 143 Label code_start, code_end; in TestCustomDisassembler() local 144 masm.Bind(&code_start); in TestCustomDisassembler() 148 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TestCustomDisassembler()
|
/external/v8/src/third_party/vtune/ |
D | vtune-jit.cc | 174 jmethod.method_load_address = event->code_start; in event_handler() 191 GetEntries()->find(event->code_start); in event_handler() 213 GetEntries()->erase(event->code_start); in event_handler() 246 GetEntries()->insert(std::pair <void*, void*>(event->code_start, event->user_data)); in event_handler()
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCTrampolineHandler.h | 89 code_start(in_code_start) {} in VTableDescriptor() 92 lldb::addr_t code_start; member
|
D | AppleObjCTrampolineHandler.cpp | 368 lldb::addr_t this_size = m_descriptors[i + 1].code_start - m_descriptors[i].code_start; in SetUpRegion() 395 if (addr <= (*pos).code_start) in AddressInRegion() 413 …s.Printf ("Code start: 0x%" PRIx64 " Flags: %d\n", m_descriptors[i].code_start, m_descriptors[i].f… in Dump()
|
/external/v8/src/compiler/ |
D | jump-threading.cc | 77 for (int i = block->code_start(); i < block->code_end(); ++i) { in ComputeForwarding() 156 for (int i = block->code_start(); i < block->code_end(); ++i) { in ApplyForwarding()
|
D | instruction.cc | 737 return InstructionAt(block->code_start()); in GetBlockStart() 744 int code_start = static_cast<int>(instructions_.size()); in StartBlock() local 745 current_block_->set_code_start(code_start); in StartBlock() 752 if (current_block_->code_start() == end) { // Empty block. Insert a nop. in EndBlock() 756 DCHECK(current_block_->code_start() >= 0 && in EndBlock() 757 current_block_->code_start() < end); in EndBlock() 901 os << " instructions: [" << block->code_start() << ", " << block->code_end() in PrintBlock()
|
D | frame-elider.cc | 24 for (int i = block->code_start(); i < block->code_end(); ++i) { in MarkBlocks()
|
D | graph-visualizer.cc | 433 if (instruction_block->code_start() >= 0) { in PrintSchedule()
|
D | register-allocator-verifier.cc | 486 for (int instr_index = block->code_start(); instr_index < block->code_end(); in VerifyGapMoves()
|
D | code-generator.cc | 311 for (int i = block->code_start(); i < block->code_end(); ++i) { in AssembleBlock()
|
D | instruction.h | 1212 int32_t code_start() const { return code_start_; } in code_start() function
|
D | register-allocator.cc | 1579 code()->GetInstructionBlock(pos.ToInstructionIndex())->code_start() == in IsBlockBoundary() 3534 LifetimePosition::GapFromInstructionIndex(block->code_start()); in ResolveControlFlow()
|
D | instruction-selector.cc | 77 size_t start = instruction_block->code_start(); in SelectInstructions()
|
/external/vixl/test/examples/ |
D | test-examples.cc | 553 Label code_start, code_end; in TEST() local 554 masm.Bind(&code_start); in TEST() 558 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TEST()
|
/external/v8/src/ |
D | gdb-jit.cc | 482 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument 486 code_start, in Write() 556 uintptr_t code_start, in WriteSegmentCommand() argument 565 cmd->vmaddr = code_start; in WriteSegmentCommand() 2178 Address addr = reinterpret_cast<Address>(event->code_start); in EventHandler() 2213 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info); in EventHandler()
|
D | log.cc | 455 event.code_start = code->instruction_start(); in LogRecordedBuffer() 472 event.code_start = from->instruction_start(); in CodeMoveEvent() 515 event.code_start = code->instruction_start(); in EndCodePosInfoEvent()
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 878 const byte* code_start = in CodeMap() local 881 AddFunction(function, code_start, code_end); in CodeMap() 917 int AddFunction(const WasmFunction* function, const byte* code_start, in AddFunction() argument 920 function, AstLocalDecls(zone_), code_start, in AddFunction() 921 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end), in AddFunction()
|
/external/v8/include/ |
D | v8.h | 5335 void* code_start; member
|
/external/bison/ |
D | ChangeLog-2012 | 13189 * scan-gram.l (YY_USER_INIT): Initialize code_start, too. 13295 * src/scan-gram.l (code_start): Initialize it to scanner_cursor, 13301 (<INITIAL>"%%"): Do not bother setting code_start, since its value 13306 * src/scan-gram.l (code_start): Always initialize it when entering 14250 (id_loc, code_start, token_start): New local vars. 14257 (<INITIAL>"%{", "{", "%%"): Save code_start.
|