HomeSort by relevance Sort by last modified time
    Searched refs:root_index (Results 1 - 25 of 30) 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 1493 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i); local
    [all...]
code-stub-assembler.cc 957 Heap::RootListIndex root_index) {
960 int index = root_index * kPointerSize;
    [all...]
code-stub-assembler.h 339 Node* LoadAndUntagToWord32Root(Heap::RootListIndex root_index);
    [all...]
  /external/v8/src/snapshot/
startup-serializer.cc 56 int root_index = root_index_map_.Lookup(obj); local
59 if (root_index != RootIndexMap::kInvalidRootIndex) {
60 if (root_has_been_serialized_.test(root_index)) {
61 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
84 root_index != RootIndexMap::kInvalidRootIndex) {
156 int root_index = static_cast<int>(current - start); local
157 if (RootShouldBeSkipped(root_index)) {
168 root_has_been_serialized_.set(root_index);
178 bool StartupSerializer::RootShouldBeSkipped(int root_index) {
179 if (root_index == Heap::kStackLimitRootIndex |
    [all...]
partial-serializer.cc 63 int root_index = root_index_map_.Lookup(obj); local
64 if (root_index != RootIndexMap::kInvalidRootIndex) {
65 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
startup-serializer.h 69 bool RootShouldBeSkipped(int root_index);
serializer.cc 207 void Serializer::PutRoot(int root_index, HeapObject* object,
212 PrintF(" Encoding root %d:", root_index);
223 root_index < kNumberOfRootArrayConstants &&
226 sink_.Put(kRootArrayConstants + root_index, "RootConstant");
228 sink_.Put(kRootArrayConstantsWithSkip + root_index, "RootConstant");
234 sink_.PutInt(root_index, "root_index");
571 int root_index = serializer_->root_index_map()->Lookup(current_contents); local
574 if (current != start && root_index != RootIndexMap::kInvalidRootIndex &&
575 Heap::RootIsImmortalImmovable(root_index) &
    [all...]
code-serializer.cc 66 int root_index = root_index_map_.Lookup(obj); local
67 if (root_index != RootIndexMap::kInvalidRootIndex) {
68 PutRoot(root_index, obj, how_to_code, where_to_point, skip);
deserializer.cc 529 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(id); \
530 new_object = isolate->heap()->root(root_index); \
805 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(id); local
    [all...]
  /external/v8/src/asmjs/
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/v8/src/compiler/
code-assembler.cc 418 Node* CodeAssembler::LoadRoot(Heap::RootListIndex root_index) {
419 if (isolate()->heap()->RootCanBeTreatedAsConstant(root_index)) {
420 Handle<Object> root = isolate()->heap()->root_handle(root_index);
431 IntPtrConstant(root_index * kPointerSize));
465 Node* CodeAssembler::StoreRoot(Heap::RootListIndex root_index, Node* value) {
466 DCHECK(Heap::RootCanBeWrittenAfterInitialization(root_index));
470 IntPtrConstant(root_index * kPointerSize), value);
code-assembler.h 263 Node* LoadRoot(Heap::RootListIndex root_index);
276 Node* StoreRoot(Heap::RootListIndex root_index, Node* value);
code-generator.cc 298 int root_index = map.Lookup(*object); local
299 if (root_index != RootIndexMap::kInvalidRootIndex) {
300 *index_return = static_cast<Heap::RootListIndex>(root_index);
    [all...]
instruction-selector.cc 446 Heap::RootListIndex root_index; local
447 if (isolate->heap()->IsRootHandle(constant, &root_index) &&
448 root_index == Heap::kOptimizedOutRootIndex) {
    [all...]
simplified-lowering.cc 1117 Heap::RootListIndex root_index; local
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.c 1203 root_index=0; local
    [all...]
  /external/v8/src/heap/
heap.h 674 static bool RootIsImmortalImmovable(int root_index);
681 static bool RootCanBeWrittenAfterInitialization(RootListIndex root_index);
    [all...]
heap.cc     [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 1754 Heap::RootListIndex root_index; local
    [all...]
  /external/v8/include/
v8.h 8925 int root_index; local
    [all...]
  /external/v8/src/builtins/arm/
builtins-arm.cc 131 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
138 __ LoadRoot(r5, root_index);
    [all...]
  /external/v8/src/builtins/arm64/
builtins-arm64.cc 132 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
138 __ LoadRoot(x5, root_index);
    [all...]
  /external/v8/src/builtins/ia32/
builtins-ia32.cc 1732 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
    [all...]
  /external/v8/src/builtins/mips/
builtins-mips.cc 133 Heap::RootListIndex const root_index = member in class:v8::internal::Heap
139 __ LoadRoot(t2, root_index);
    [all...]

Completed in 2717 milliseconds

1 2