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

1 2 3

  /external/v8/src/
address-map.cc 18 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i);
handles.cc 26 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) {
150 ->root_handle(static_cast<Heap::RootListIndex>(index))
objects-debug.cc     [all...]
  /external/v8/src/x87/
macro-assembler-x87.h 77 void LoadRoot(Register destination, Heap::RootListIndex index);
78 void StoreRoot(Register source, Register scratch, Heap::RootListIndex index);
79 void CompareRoot(Register with, Register scratch, Heap::RootListIndex index);
82 void CompareRoot(Register with, Heap::RootListIndex index);
83 void CompareRoot(const Operand& with, Heap::RootListIndex index);
84 void PushRoot(Heap::RootListIndex index);
87 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal,
92 void JumpIfRoot(const Operand& with, Heap::RootListIndex index,
100 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
106 void JumpIfNotRoot(const Operand& with, Heap::RootListIndex index
    [all...]
macro-assembler-x87.cc 67 void MacroAssembler::LoadRoot(Register destination, Heap::RootListIndex index) {
83 Heap::RootListIndex index) {
95 Heap::RootListIndex index) {
105 void MacroAssembler::CompareRoot(Register with, Heap::RootListIndex index) {
112 Heap::RootListIndex index) {
118 void MacroAssembler::PushRoot(Heap::RootListIndex index) {
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.h 74 void LoadRoot(Register destination, Heap::RootListIndex index);
75 void StoreRoot(Register source, Register scratch, Heap::RootListIndex index);
76 void CompareRoot(Register with, Register scratch, Heap::RootListIndex index);
79 void CompareRoot(Register with, Heap::RootListIndex index);
80 void CompareRoot(const Operand& with, Heap::RootListIndex index);
81 void PushRoot(Heap::RootListIndex index);
84 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal,
89 void JumpIfRoot(const Operand& with, Heap::RootListIndex index,
97 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
103 void JumpIfNotRoot(const Operand& with, Heap::RootListIndex index
    [all...]
macro-assembler-ia32.cc 67 void MacroAssembler::LoadRoot(Register destination, Heap::RootListIndex index) {
83 Heap::RootListIndex index) {
95 Heap::RootListIndex index) {
105 void MacroAssembler::CompareRoot(Register with, Heap::RootListIndex index) {
112 Heap::RootListIndex index) {
118 void MacroAssembler::PushRoot(Heap::RootListIndex index) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 174 Heap::RootListIndex index);
221 void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index,
224 void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index,
  /external/v8/src/x64/
macro-assembler-x64.h 138 void LoadRoot(Register destination, Heap::RootListIndex index);
139 void LoadRoot(const Operand& destination, Heap::RootListIndex index) {
143 void StoreRoot(Register source, Heap::RootListIndex index);
150 void CompareRoot(Register with, Heap::RootListIndex index);
151 void CompareRoot(const Operand& with, Heap::RootListIndex index);
152 void PushRoot(Heap::RootListIndex index);
155 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal,
160 void JumpIfRoot(const Operand& with, Heap::RootListIndex index,
168 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
174 void JumpIfNotRoot(const Operand& with, Heap::RootListIndex index
    [all...]
  /external/v8/src/heap/
heap.h 449 enum RootListIndex {
604 static bool RootCanBeWrittenAfterInitialization(RootListIndex root_index);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.h 181 Heap::RootListIndex index,
185 Heap::RootListIndex index,
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.h 168 void LoadRoot(Register destination, Heap::RootListIndex index,
171 void StoreRoot(Register source, Heap::RootListIndex index,
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 802 virtual void Plug(Heap::RootListIndex index) const = 0;
857 void Plug(Heap::RootListIndex) const override;
876 void Plug(Heap::RootListIndex) const override;
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 208 Heap::RootListIndex index,
321 void PushRoot(Heap::RootListIndex index) {
327 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal) {
333 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
341 Heap::RootListIndex index);
343 Heap::RootListIndex index,
348 Heap::RootListIndex index);
350 Heap::RootListIndex index,
    [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h 236 Heap::RootListIndex index,
353 void PushRoot(Heap::RootListIndex index) {
359 void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal) {
365 void JumpIfNotRoot(Register with, Heap::RootListIndex index,
373 Heap::RootListIndex index);
375 Heap::RootListIndex index,
380 Heap::RootListIndex index);
382 Heap::RootListIndex index,
    [all...]
  /external/v8/src/compiler/
code-generator.h 91 Heap::RootListIndex* index_return);
code-assembler.h 251 Node* LoadRoot(Heap::RootListIndex root_index);
263 Node* StoreRoot(Heap::RootListIndex root_index, Node* value);
code-generator.cc 295 Handle<HeapObject> object, Heap::RootListIndex* index_return) {
302 *index_return = static_cast<Heap::RootListIndex>(root_index);
code-assembler.cc 250 Node* CodeAssembler::LoadRoot(Heap::RootListIndex root_index) {
290 Node* CodeAssembler::StoreRoot(Heap::RootListIndex root_index, Node* value) {
  /external/v8/src/snapshot/
deserializer.cc 475 Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(id); \
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.h     [all...]
macro-assembler-arm64.cc     [all...]
  /external/v8/src/s390/
macro-assembler-s390.h 46 inline MemOperand RootMemOperand(Heap::RootListIndex index) {
224 void LoadRoot(Register destination, Heap::RootListIndex index,
227 void StoreRoot(Register source, Heap::RootListIndex index,
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 478 void FullCodeGenerator::EffectContext::Plug(Heap::RootListIndex index) const {
484 Heap::RootListIndex index) const {
490 Heap::RootListIndex index) const {
496 void FullCodeGenerator::TestContext::Plug(Heap::RootListIndex index) const {
611 Heap::RootListIndex value_root_index =
618 Heap::RootListIndex value_root_index =
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 443 void FullCodeGenerator::EffectContext::Plug(Heap::RootListIndex index) const {
448 Heap::RootListIndex index) const {
454 Heap::RootListIndex index) const {
460 void FullCodeGenerator::TestContext::Plug(Heap::RootListIndex index) const {
584 Heap::RootListIndex value_root_index =
592 Heap::RootListIndex value_root_index =
    [all...]

Completed in 1559 milliseconds

1 2 3