HomeSort by relevance Sort by last modified time
    Searched refs:code_start (Results 1 - 25 of 27) sorted by null

1 2

  /device/google/contexthub/firmware/misc/platform/stm32f4xx/
showsizes.sh 28 code_start=$(getvar $1 __code_start)
30 code_sz=$(($code_end-$code_start))
  /external/vixl/examples/
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);
custom-disassembler.cc 143 Label code_start, code_end; local
144 masm.Bind(&code_start);
148 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
  /art/runtime/
oat_quick_method_header.h 88 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); local
92 code_start++;
94 return code_start <= pc && pc <= (code_start + code_size_);
stack.cc 646 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); local
647 CHECK(code_start <= pc && pc <= (code_start + code_size))
650 << " code_start=" << code_start
    [all...]
  /external/v8/test/cctest/
test-sampler-api.cc 87 const void* code_start; member in struct:__anon24445::SamplingTestHelper::CodeEventEntry
118 static_cast<const uint8_t*>(entry.code_start) + entry.code_len;
158 entry.code_start = event->code_start;
160 code_entries_.insert(std::make_pair(entry.code_start, entry));
164 CodeEntries::iterator it = code_entries_.find(event->code_start);
169 entry.code_start = event->new_code_start;
171 code_entries_.insert(std::make_pair(entry.code_start, entry));
175 code_entries_.erase(event->code_start);
test-api.cc     [all...]
  /external/bison/src/
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...]
scan-gram.c 1322 boundary code_start = scanner_cursor; variable
1784 code_start = loc->start; BEGIN SC_PROLOGUE; variable
    [all...]
  /external/v8/src/third_party/vtune/
vtune-jit.cc 191 jmethod.method_load_address = event->code_start;
208 GetEntries()->find(event->code_start);
230 GetEntries()->erase(event->code_start);
263 GetEntries()->insert(std::pair <void*, void*>(event->code_start, event->user_data));
  /external/v8/src/compiler/
frame-elider.cc 24 for (auto i = block->code_start(); i < block->code_end(); ++i) {
instruction.cc 663 return InstructionAt(block->code_start());
670 int code_start = static_cast<int>(instructions_.size()); local
671 block->set_code_start(code_start);
672 block_starts_.push_back(code_start);
679 if (block->code_start() == end) { // Empty block. Insert a nop.
683 DCHECK(block->code_start() >= 0 && block->code_start() < end);
713 DCHECK(block->code_start() <= instruction_index &&
918 os << " instructions: [" << block->code_start() << ", "
jump-threading.cc 77 for (int i = block->code_start(); i < block->code_end(); ++i) {
147 for (int i = block->code_start(); i < block->code_end(); ++i) {
move-optimizer.cc 155 for (int index = block->code_start(); index < block->code_end(); ++index) {
graph-visualizer.cc 409 if (instruction_block->code_start() >= 0) {
code-generator.cc 143 for (int i = block->code_start(); i < block->code_end(); ++i) {
register-allocator-verifier.cc 686 for (int instr_index = block->code_start(); instr_index < block->code_end();
instruction.h     [all...]
instruction-selector.cc 75 size_t start = instruction_block->code_start();
    [all...]
  /art/compiler/
common_compiler_test.cc 98 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) {
99 CHECK(code_start != nullptr);
101 uintptr_t data = reinterpret_cast<uintptr_t>(code_start);
common_compiler_test.h 52 static void MakeExecutable(const void* code_start, size_t code_length);
  /external/vixl/test/examples/
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/
gdb-jit.cc 482 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) {
486 code_start,
556 uintptr_t code_start,
565 cmd->vmaddr = code_start;
    [all...]
log.cc 522 event.code_start = code->instruction_start();
541 event.code_start = from_code->instruction_start();
561 event.code_start = from_code->instruction_start();
598 event.code_start = code->instruction_start();
    [all...]
  /art/compiler/optimizing/
code_generator.cc 189 size_t code_start = 0; local
194 code_start = GetAssembler()->CodeSize();
200 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize());
    [all...]

Completed in 467 milliseconds

1 2