HomeSort by: relevance | last modified time | path
    Searched defs:Stack (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_str_test.cc 39 Stack,
44 return oob_kind == OOBKind::Stack ? kStackReadUnderflow
49 return oob_kind == OOBKind::Stack ? kStackReadOverflow
93 StrLenOOBTestTemplate(stack_string, length, OOBKind::Stack);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 30 void __ubsan::GetStackTrace(BufferedStackTrace *stack, uptr max_depth, uptr pc,
36 stack->Unwind(max_depth, pc, bp, context, top, bottom, fast);
45 BufferedStackTrace stack; local in function:MaybePrintStackTrace
46 GetStackTrace(&stack, kStackTraceMax, pc, bp, nullptr,
48 stack.Print();
329 // global, stack variable, or dynamic allocation, then do so.
430 SymbolizedStackHolder Stack(Symbolizer::GetOrInit()->SymbolizePC(PC));
431 const AddressInfo &AI = Stack.get()->info;
ubsan_diag.h 23 SymbolizedStack *Stack;
26 if (Stack)
27 Stack->ClearAll();
31 explicit SymbolizedStackHolder(SymbolizedStack *Stack = nullptr)
32 : Stack(Stack) {}
35 if (Stack != S)
37 Stack = S;
39 const SymbolizedStack *get() const { return Stack; }
73 Location(const SymbolizedStackHolder &Stack)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_function_call_trie.h 28 /// A FunctionCallTrie represents the stack traces of XRay instrumented
30 /// the path from the root to the node its stack trace. Each node in the trie
33 /// * The cumulative amount of time spent in this particular node/stack.
34 /// * The number of times this stack has appeared.
77 /// isolated data. This isolation gives us a means of representing the stack
85 /// This approach allows us to maintain a shadow stack, which represents the
363 // If we're already overflowed the function call stack, do not bother
390 // From this point on, we require that the stack is not empty.
396 // on the top of the stack.
406 // This means we've never seen this stack before, create a new node here
    [all...]
  /src/sys/arch/i386/stand/pxeboot/
pxe.h 79 SEGSEL_t StackSeg; /* Stack segment address */
80 uint16_t StackSize; /* Stack segment size (bytes) */
108 SEGDESC_t Stack;

Completed in 50 milliseconds