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

  /external/v8/src/interpreter/
bytecode-array-accessor.h 21 BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
31 const Handle<BytecodeArray>& bytecode_array() const { function in class:v8::internal::interpreter::BytecodeArrayAccessor
bytecode-register.cc 75 Register Register::bytecode_array() { function in class:v8::internal::interpreter::Register
bytecode-array-writer.cc 44 Handle<BytecodeArray> bytecode_array = isolate->factory()->NewBytecodeArray( local
47 bytecode_array->set_handler_table(*handler_table);
50 isolate, Handle<AbstractCode>::cast(bytecode_array));
51 bytecode_array->set_source_position_table(*source_position_table);
52 return bytecode_array;
interpreter-assembler.cc 182 bytecode_array_.Bind(LoadRegister(Register::bytecode_array()));
1350 Node* bytecode_array = LoadRegister(Register::bytecode_array()); local
    [all...]
  /external/v8/src/compiler/
bytecode-analysis.h 64 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone,
104 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } function in class:v8::internal::compiler::BASE_EMBEDDED
bytecode-analysis.cc 84 BytecodeAnalysis::BytecodeAnalysis(Handle<BytecodeArray> bytecode_array,
86 : bytecode_array_(bytecode_array),
93 liveness_map_(bytecode_array->length(), zone) {}
183 const Handle<BytecodeArray>& bytecode_array = accessor.bytecode_array(); local
203 HandlerTable* table = HandlerTable::cast(bytecode_array->handler_table());
250 BytecodeArrayRandomIterator iterator(bytecode_array(), zone());
305 current_offset, bytecode_array()->register_count(), zone());
465 interpreter::BytecodeArrayIterator iterator(bytecode_array());
493 BytecodeArrayRandomIterator iterator(bytecode_array(), zone())
    [all...]
bytecode-graph-builder.h 248 const Handle<BytecodeArray>& bytecode_array() const { function in class:v8::internal::compiler::BytecodeGraphBuilder
  /external/v8/src/profiler/
tick-sample.cc 257 // bytecode_array might be garbage, so don't dereference it.
258 i::Address bytecode_array = local
261 frames[i++] = bytecode_array + i::BytecodeArray::kHeaderSize +
  /external/v8/src/
compilation-info.h 92 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } function in class:v8::internal::final
192 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) {
193 bytecode_array_ = bytecode_array;
deoptimizer.cc 642 BytecodeArray* bytecode = function->shared()->bytecode_array();
1211 Object* bytecode_array = shared->HasDebugInfo() local
    [all...]
  /external/v8/src/runtime/
runtime-debug.cc 58 BytecodeArray* bytecode_array = shared->bytecode_array(); local
61 interpreter::Bytecodes::FromByte(bytecode_array->get(bytecode_offset));
    [all...]
  /external/v8/src/debug/
debug.cc 294 BytecodeArray* bytecode_array = debug_info_->OriginalBytecodeArray(); local
296 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
325 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
327 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
331 bytecode_array->set(code_offset(),
339 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
341 bytecode_array->set(code_offset(), original->get(code_offset()));
348 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
350 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
    [all...]

Completed in 878 milliseconds