HomeSort by relevance Sort by last modified time
    Searched defs:code_start (Results 1 - 13 of 13) sorted by null

  /external/vixl/examples/aarch64/
non-const-visitor.cc 72 Label code_start, code_end; local
73 masm.Bind(&code_start);
77 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
custom-disassembler.cc 139 Label code_start, code_end; local
140 masm.Bind(&code_start);
144 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
  /art/runtime/
oat_quick_method_header.h 138 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); local
142 code_start++;
144 return code_start <= pc && pc <= (code_start + GetCodeSize());
stack.cc 627 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); local
628 CHECK(code_start <= pc && pc <= (code_start + code_size))
631 << " code_start=" << code_start
    [all...]
  /external/vixl/test/aarch64/examples/
test-examples.cc 568 Label code_start, code_end; local
569 masm.Bind(&code_start);
573 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
  /external/syslinux/gpxe/src/util/
elf2efi.c 334 unsigned long code_start; local
345 code_start = pe_header->nt.OptionalHeader.BaseOfCode;
346 code_end = ( code_start + pe_header->nt.OptionalHeader.SizeOfCode );
379 applicable_start = &code_start;
434 pe_header->nt.OptionalHeader.BaseOfCode = code_start;
435 pe_header->nt.OptionalHeader.SizeOfCode = ( code_end - code_start );
  /external/v8/src/
perf-jit.cc 318 Address code_start = code->instruction_start(); local
331 reinterpret_cast<intptr_t>(code_start + iterator.code_offset() + 0x40);
  /art/compiler/optimizing/
code_generator.cc 360 size_t code_start = 0; local
365 code_start = GetAssembler()->CodeSize();
371 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize());
    [all...]
  /external/syslinux/com32/gfxboot/
gfxboot.c 497 unsigned i, fname_len, code_start = 0; local
502 if((code_start = magic_ok(buf, code_size))) return code_start;
510 if((code_start = magic_ok(buf + i, code_size))) {
512 return code_start;
522 return code_start;
536 unsigned code_start, code_size, file_start, file_len, u; local
555 if(!(code_start = find_file(archive, archive_size, &file_start, &file_len, &code_size))) {
562 "code_start = 0x%x, code_size = 0x%x\n"
565 code_start, code_size
    [all...]
  /external/v8/src/compiler/
instruction.cc 695 os << " instructions: [" << block->code_start() << ", " << block->code_end()
843 return InstructionAt(block->code_start());
850 int code_start = static_cast<int>(instructions_.size()); local
851 current_block_->set_code_start(code_start);
858 if (current_block_->code_start() == end) { // Empty block. Insert a nop.
862 DCHECK(current_block_->code_start() >= 0 &&
863 current_block_->code_start() < end);
    [all...]
instruction.h 1364 int32_t code_start() const { return code_start_; } function in class:v8::internal::compiler::final
    [all...]
  /external/v8/src/wasm/
wasm-interpreter.cc 852 const byte* code_start = module_start + function->code_start_offset; local
854 AddFunction(function, code_start, code_end);
892 int AddFunction(const WasmFunction* function, const byte* code_start,
895 function, BodyLocalDecls(zone_), code_start,
896 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end),
    [all...]
  /external/v8/include/
v8.h 6135 void* code_start; member in struct:v8::JitCodeEvent
    [all...]

Completed in 935 milliseconds