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

1 2

  /external/v8/src/
address-map.cc 18 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i); local
19 Object* root = isolate->heap()->root(root_index);
23 if (isolate->heap()->RootCanBeTreatedAsConstant(root_index)) {
36 CHECK(!Heap::RootIsImmortalImmovable(root_index));
objects-debug.cc 1256 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i); local
    [all...]
  /external/v8/src/snapshot/
startup-serializer.cc 55 int root_index = root_index_map_.Lookup(obj); local
58 if (root_index != RootIndexMap::kInvalidRootIndex) {
59 if (root_has_been_serialized_.test(root_index)) {
60 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
75 root_index != RootIndexMap::kInvalidRootIndex) {
149 int root_index = static_cast<int>(current - start); local
150 if (RootShouldBeSkipped(root_index)) {
161 root_has_been_serialized_.set(root_index);
171 bool StartupSerializer::RootShouldBeSkipped(int root_index) {
172 if (root_index == Heap::kStackLimitRootIndex |
    [all...]
partial-serializer.cc 56 int root_index = root_index_map_.Lookup(obj); local
57 if (root_index != RootIndexMap::kInvalidRootIndex) {
58 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
startup-serializer.h 69 bool RootShouldBeSkipped(int root_index);
serializer.cc 200 void Serializer::PutRoot(int root_index, HeapObject* object,
205 PrintF(" Encoding root %d:", root_index);
211 root_index < kNumberOfRootArrayConstants &&
214 sink_.Put(kRootArrayConstants + root_index, "RootConstant");
216 sink_.Put(kRootArrayConstantsWithSkip + root_index, "RootConstant");
222 sink_.PutInt(root_index, "root_index");
548 int root_index = serializer_->root_index_map()->Lookup(current_contents); local
551 if (current != start && root_index != RootIndexMap::kInvalidRootIndex &&
552 Heap::RootIsImmortalImmovable(root_index) &
    [all...]
code-serializer.cc 52 int root_index = root_index_map_.Lookup(obj); local
53 if (root_index != RootIndexMap::kInvalidRootIndex) {
54 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
deserializer.cc 475 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(id); \
476 new_object = isolate->heap()->root(root_index); \
750 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(id); local
    [all...]
  /external/v8/src/wasm/
switch-logic.cc 18 size_t root_index = (begin + end) / 2; local
19 CaseNode* root = nodes->at(root_index);
20 if (root_index != 0) {
21 root->left = CreateBst(nodes, begin, root_index - 1);
23 root->right = CreateBst(nodes, root_index + 1, end);
  /external/ImageMagick/MagickCore/
nt-base.c 1203 root_index=0; local
    [all...]
  /external/v8/src/compiler/
code-assembler.cc 250 Node* CodeAssembler::LoadRoot(Heap::RootListIndex root_index) {
251 if (isolate()->heap()->RootCanBeTreatedAsConstant(root_index)) {
252 Handle<Object> root = isolate()->heap()->root_handle(root_index);
263 IntPtrConstant(root_index * kPointerSize));
290 Node* CodeAssembler::StoreRoot(Heap::RootListIndex root_index, Node* value) {
291 DCHECK(Heap::RootCanBeWrittenAfterInitialization(root_index));
295 IntPtrConstant(root_index * kPointerSize), value);
code-assembler.h 251 Node* LoadRoot(Heap::RootListIndex root_index);
263 Node* StoreRoot(Heap::RootListIndex root_index, Node* value);
code-generator.cc 300 int root_index = map.Lookup(*object); local
301 if (root_index != RootIndexMap::kInvalidRootIndex) {
302 *index_return = static_cast<Heap::RootListIndex>(root_index);
simplified-lowering.cc 1020 int root_index = root_index_map.Lookup(*value_object); local
    [all...]
  /external/v8/src/heap/
heap.h 597 static bool RootIsImmortalImmovable(int root_index);
604 static bool RootCanBeWrittenAfterInitialization(RootListIndex root_index);
    [all...]
heap.cc     [all...]
  /external/v8/include/
v8.h 7939 int root_index; local
    [all...]
  /external/v8/src/arm/
builtins-arm.cc 133 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
140 __ LoadRoot(r5, root_index);
    [all...]
  /external/v8/src/arm64/
builtins-arm64.cc 134 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
140 __ LoadRoot(x5, root_index);
    [all...]
  /external/v8/src/ia32/
builtins-ia32.cc 1575 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
    [all...]
  /external/v8/src/mips/
builtins-mips.cc 136 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
142 __ LoadRoot(t2, root_index);
    [all...]
  /external/v8/src/mips64/
builtins-mips64.cc 135 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
141 __ LoadRoot(t1, root_index);
    [all...]
  /external/v8/src/ppc/
builtins-ppc.cc 133 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
140 __ LoadRoot(r8, root_index);
    [all...]
  /external/v8/src/s390/
builtins-s390.cc 125 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
132 __ LoadRoot(r7, root_index);
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 1644 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
    [all...]

Completed in 411 milliseconds

1 2