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

1 2

  /external/v8/src/wasm/
jump-table-assembler.h 42 static uint32_t SlotIndexToOffset(uint32_t slot_index) {
43 uint32_t line_index = slot_index / kJumpTableSlotsPerLine;
45 (slot_index % kJumpTableSlotsPerLine) * kJumpTableSlotSize;
58 static void EmitLazyCompileJumpSlot(Address base, uint32_t slot_index,
62 Address slot = base + SlotIndexToOffset(slot_index);
71 static void PatchJumpTableSlot(Address base, uint32_t slot_index,
74 Address slot = base + SlotIndexToOffset(slot_index);
  /external/v8/src/ast/
context-slot-cache.cc 43 int slot_index) {
45 DCHECK_LT(kNotFound, slot_index);
52 Value(mode, init_flag, maybe_assigned_flag, slot_index - kNotFound).raw();
54 ValidateEntry(data, name, mode, init_flag, maybe_assigned_flag, slot_index);
68 int slot_index) {
78 DCHECK_EQ(result.index() + kNotFound, slot_index);
context-slot-cache.h 29 MaybeAssignedFlag maybe_assigned_flag, int slot_index);
50 MaybeAssignedFlag maybe_assigned_flag, int slot_index);
  /external/v8/src/objects/
debug-objects.h 226 int StartSourcePosition(int slot_index) const;
227 int EndSourcePosition(int slot_index) const;
228 int BlockCount(int slot_index) const;
230 void InitializeSlot(int slot_index, int start_pos, int end_pos);
231 void IncrementBlockCount(int slot_index);
232 void ResetBlockCount(int slot_index);
244 static int FirstIndexForSlot(int slot_index) {
245 return kFirstSlotIndex + slot_index * kSlotIndexCount;
debug-objects.cc 324 int CoverageInfo::StartSourcePosition(int slot_index) const {
325 DCHECK_LT(slot_index, SlotCount());
326 const int slot_start = CoverageInfo::FirstIndexForSlot(slot_index);
330 int CoverageInfo::EndSourcePosition(int slot_index) const {
331 DCHECK_LT(slot_index, SlotCount());
332 const int slot_start = CoverageInfo::FirstIndexForSlot(slot_index);
336 int CoverageInfo::BlockCount(int slot_index) const {
337 DCHECK_LT(slot_index, SlotCount());
338 const int slot_start = CoverageInfo::FirstIndexForSlot(slot_index);
342 void CoverageInfo::InitializeSlot(int slot_index, int from_pos, int to_pos)
    [all...]
  /external/libchrome/base/threading/
thread_local_storage_unittest.cc 117 size_t slot_index = 0; local
118 for (; slot_index < 10; ++slot_index) {
119 CreateTlsKeyWithDestructor(slot_index);
127 for (; slot_index < kKeyCount; ++slot_index) {
128 CreateTlsKeyWithDestructor(slot_index);
  /external/curl/lib/
hash.c 284 iter->slot_index = 0;
300 for(i = iter->slot_index; i < h->slots; i++) {
303 iter->slot_index = i + 1;
334 if(iter.slot_index != last_index) {
335 fprintf(stderr, "index %d:", iter.slot_index);
339 last_index = iter.slot_index;
hash.h 68 int slot_index; member in struct:curl_hash_iterator
  /external/v8/src/
contexts.cc 47 int slot_index = ScopeInfo::ContextSlotIndex( local
51 if (slot_index >= 0) {
53 result->slot_index = slot_index;
231 *index = r.slot_index;
296 int slot_index = ScopeInfo::ContextSlotIndex(scope_info, name, &mode, local
298 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
299 if (slot_index >= 0) {
302 slot_index, static_cast<uint8_t>(mode))
    [all...]
deoptimizer.h 370 static uint32_t GetUInt32Slot(Address fp, int slot_index);
371 static Float32 GetFloatSlot(Address fp, int slot_index);
372 static Float64 GetDoubleSlot(Address fp, int slot_index);
    [all...]
code-stub-assembler.h     [all...]
contexts.h 369 int slot_index; member in struct:v8::internal::ScriptContextTable::LookupResult
    [all...]
frames.h 848 static int StackSlotOffsetRelativeToFp(int slot_index);
    [all...]
  /external/v8/src/interpreter/
interpreter-generator.cc 220 // LdaContextSlot <context> <slot_index> <depth>
222 // Load the object in |slot_index| of the context at |depth| in the context
226 Node* slot_index = BytecodeOperandIdx(1); local
229 Node* result = LoadContextElement(slot_context, slot_index);
234 // LdaImmutableContextSlot <context> <slot_index> <depth>
236 // Load the object in |slot_index| of the context at |depth| in the context
240 Node* slot_index = BytecodeOperandIdx(1); local
243 Node* result = LoadContextElement(slot_context, slot_index);
248 // LdaCurrentContextSlot <slot_index>
250 // Load the object in |slot_index| of the current context into the accumulator
252 Node* slot_index = BytecodeOperandIdx(0); local
263 Node* slot_index = BytecodeOperandIdx(0); local
277 Node* slot_index = BytecodeOperandIdx(1); local
290 Node* slot_index = BytecodeOperandIdx(0); local
330 Node* slot_index = BytecodeOperandIdx(1); local
783 Node* slot_index = BytecodeOperandIdx(1); local
797 Node* slot_index = BytecodeOperandIdx(1); local
904 Node* slot_index = BytecodeOperandIdx(1); local
932 slot_index); local
946 feedback_vector, slot_index); local
953 Node* slot_index = BytecodeOperandIdx(1); local
972 feedback_vector, slot_index); local
1059 Node* slot_index = BytecodeOperandIdx(0); local
1078 slot_index); local
1085 slot_index); local
1137 Node* slot_index = BytecodeOperandIdx(0); local
1745 Node* slot_index = BytecodeOperandIdx(1); local
    [all...]
bytecode-array-builder.cc 716 Register context, int slot_index, int depth,
720 OutputLdaImmutableCurrentContextSlot(slot_index);
723 OutputLdaCurrentContextSlot(slot_index);
726 OutputLdaImmutableContextSlot(context, slot_index, depth);
729 OutputLdaContextSlot(context, slot_index, depth);
735 int slot_index,
738 OutputStaCurrentContextSlot(slot_index);
740 OutputStaContextSlot(context, slot_index, depth);
758 const AstRawString* name, TypeofMode typeof_mode, int slot_index,
762 OutputLdaLookupContextSlotInsideTypeof(name_index, slot_index, depth)
    [all...]
bytecode-array-builder.h 92 // Load the object at |slot_index| at |depth| in the context chain starting
95 BytecodeArrayBuilder& LoadContextSlot(Register context, int slot_index,
99 // Stores the object in the accumulator into |slot_index| at |depth| in the
101 BytecodeArrayBuilder& StoreContextSlot(Register context, int slot_index,
187 // Lookup the variable with |name|, which is known to be at |slot_index| at
192 int slot_index, int depth);
interpreter-assembler.cc 1773 Node* slot_index = BytecodeOperandIdx(0); local
    [all...]
  /external/v8/src/debug/
debug-stack-trace-iterator.cc 103 int slot_index = ScopeInfo::ContextSlotIndex( local
106 if (slot_index < 0) return v8::MaybeLocal<v8::Value>();
107 Handle<Object> value = handle(context->get(slot_index), isolate_);
debug-scopes.cc 863 int slot_index = ScopeInfo::ContextSlotIndex(scope_info, variable_name, &mode, local
865 if (slot_index < 0) return false;
867 context_->set(slot_index, *new_value);
901 script_context->set(lookup_result.slot_index, *new_value);
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_query.c 381 int slot_index = -1; local
400 slot_index = allocate_query_slot(svga, alloc_entry);
402 if (slot_index == -1) {
409 slot_index = allocate_query_slot(svga, alloc_entry);
412 assert(slot_index != -1);
413 offset = slot_index * len + alloc_entry->start_offset;
427 unsigned slot_index; local
437 slot_index = (offset - alloc_entry->start_offset) /
439 deallocate_query_slot(svga, alloc_entry, slot_index);
    [all...]
  /external/autotest/client/bin/input/
input_device.py 319 for slot_index in range(self.num_slots):
320 slot_id = self._convert_slot_index_to_slot_id(slot_index)
321 self.mt_slots[slot_index][c].value = values[slot_id]
593 for slot_index in range(self.num_slots):
594 slot = self.mt_slots[slot_index]
597 slot_id = self._convert_slot_index_to_slot_id(slot_index)
  /external/v8/src/wasm/baseline/arm64/
liftoff-assembler-arm64.h 933 size_t slot_index = 0; local
935 size_t poke_offset = (slot_count - slot_index - 1) * kXRegSize;
962 slot_index++;
  /external/v8/src/ic/
ic.cc 497 lookup_result.slot_index, isolate());
506 lookup_result.slot_index)) {
    [all...]
accessor-assembler.cc 2598 TNode<IntPtrT> slot_index = local
2954 TNode<IntPtrT> slot_index = local
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.cc 1197 uint32_t slot_index = bytecode_iterator().GetIndexOperand(1); local
2466 int const slot_index = bytecode_iterator().GetIndexOperand(1); local
    [all...]

Completed in 3777 milliseconds

1 2