Home
last modified time | relevance | path

Searched refs:code_start (Results 1 – 21 of 21) sorted by relevance

/external/vixl/examples/aarch64/
Dnon-const-visitor.cc72 Label code_start, code_end; in main() local
73 masm.Bind(&code_start); in main()
77 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in main()
Dcustom-disassembler.cc139 Label code_start, code_end; in TestCustomDisassembler() local
140 masm.Bind(&code_start); in TestCustomDisassembler()
144 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TestCustomDisassembler()
/external/v8/src/third_party/vtune/
Dvtune-jit.cc174 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/syslinux/com32/gfxboot/
Dgfxboot.c497 unsigned i, fname_len, code_start = 0; in find_file() local
502 if((code_start = magic_ok(buf, code_size))) return code_start; in find_file()
510 if((code_start = magic_ok(buf + i, code_size))) { in find_file()
512 return code_start; in find_file()
522 return code_start; in find_file()
536 unsigned code_start, code_size, file_start, file_len, u; in gfx_init() local
555 if(!(code_start = find_file(archive, archive_size, &file_start, &file_len, &code_size))) { in gfx_init()
565 code_start, code_size, in gfx_init()
594 memcpy(lowmem, archive + file_start + code_start, code_size); in gfx_init()
/external/vixl/examples/aarch32/
Dexamples.h50 ExecutableMemory(const byte* code_start, size_t size) in ExecutableMemory() argument
59 memcpy(buffer_, code_start, size_); in ExecutableMemory()
/external/syslinux/gpxe/src/util/
Delf2efi.c334 unsigned long code_start; in process_section() local
345 code_start = pe_header->nt.OptionalHeader.BaseOfCode; in process_section()
346 code_end = ( code_start + pe_header->nt.OptionalHeader.SizeOfCode ); in process_section()
379 applicable_start = &code_start; in process_section()
434 pe_header->nt.OptionalHeader.BaseOfCode = code_start; in process_section()
435 pe_header->nt.OptionalHeader.SizeOfCode = ( code_end - code_start ); in process_section()
/external/v8/src/compiler/
Djump-threading.cc78 for (int i = block->code_start(); i < block->code_end(); ++i) { in ComputeForwarding()
157 for (int i = block->code_start(); i < block->code_end(); ++i) { in ApplyForwarding()
Dinstruction.cc695 os << " instructions: [" << block->code_start() << ", " << block->code_end() in operator <<()
843 return InstructionAt(block->code_start()); in GetBlockStart()
850 int code_start = static_cast<int>(instructions_.size()); in StartBlock() local
851 current_block_->set_code_start(code_start); in StartBlock()
858 if (current_block_->code_start() == end) { // Empty block. Insert a nop. in EndBlock()
862 DCHECK(current_block_->code_start() >= 0 && in EndBlock()
863 current_block_->code_start() < end); in EndBlock()
Dframe-elider.cc25 for (int i = block->code_start(); i < block->code_end(); ++i) { in MarkBlocks()
Dregister-allocator-verifier.cc515 for (int instr_index = block->code_start(); instr_index < block->code_end(); in VerifyGapMoves()
Dgraph-visualizer.cc455 if (instruction_block->code_start() >= 0) { in PrintSchedule()
Dcode-generator.cc309 for (int i = block->code_start(); i < block->code_end(); ++i) { in AssembleBlock()
Dinstruction.h1364 int32_t code_start() const { return code_start_; } in NON_EXPORTED_BASE()
Dregister-allocator.cc1586 code()->GetInstructionBlock(pos.ToInstructionIndex())->code_start() == in IsBlockBoundary()
3777 LifetimePosition::GapFromInstructionIndex(block->code_start()); in ResolveControlFlow()
Dinstruction-selector.cc87 size_t start = instruction_block->code_start(); in SelectInstructions()
/external/vixl/test/aarch64/examples/
Dtest-examples.cc568 Label code_start, code_end; in TEST() local
569 masm.Bind(&code_start); in TEST()
573 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TEST()
/external/v8/src/
Dperf-jit.cc318 Address code_start = code->instruction_start(); in LogWriteDebugInfo() local
331 reinterpret_cast<intptr_t>(code_start + iterator.code_offset() + 0x40); in LogWriteDebugInfo()
Dgdb-jit.cc483 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument
487 code_start, in Write()
557 uintptr_t code_start, in WriteSegmentCommand() argument
566 cmd->vmaddr = code_start; in WriteSegmentCommand()
2179 Address addr = reinterpret_cast<Address>(event->code_start); in EventHandler()
2214 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info); in EventHandler()
Dlog.cc453 event.code_start = code->instruction_start(); in LogRecordedBuffer()
470 event.code_start = from->instruction_start(); in CodeMoveEvent()
513 event.code_start = code->instruction_start(); in EndCodePosInfoEvent()
/external/v8/src/wasm/
Dwasm-interpreter.cc852 const byte* code_start = module_start + function->code_start_offset; in CodeMap() local
854 AddFunction(function, code_start, code_end); in CodeMap()
892 int AddFunction(const WasmFunction* function, const byte* code_start, in AddFunction() argument
895 function, BodyLocalDecls(zone_), code_start, in AddFunction()
896 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end), in AddFunction()
/external/v8/include/
Dv8.h6135 void* code_start; member