HomeSort by relevance Sort by last modified time
    Searched defs:needs_frame (Results 1 - 9 of 9) sorted by null

  /external/v8/src/
deoptimizer.h 410 needs_frame(frame) {}
414 needs_frame == other.needs_frame;
421 bool needs_frame; member in struct:v8::internal::Deoptimizer::JumpTableEntry
    [all...]
  /external/v8/src/compiler/
instruction.h 1400 bool needs_frame() const { return needs_frame_; } function in class:v8::internal::compiler::final
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_compile.c 10713 BOOL needs_frame; local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 310 Label needs_frame, call_deopt_entry; local
331 if (table_entry->needs_frame) {
335 __ bl(&needs_frame);
342 if (needs_frame.is_linked()) {
343 __ bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 758 Label needs_frame, call_deopt_entry; local
780 if (table_entry->needs_frame) {
783 // Save lr before Bl, fp will be adjusted in the needs_frame code.
785 // Reuse the existing needs_frame code.
786 __ Bl(&needs_frame);
796 if (needs_frame.is_linked()) {
802 Comment(";;; needs_frame common code");
805 __ Bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 329 Label needs_frame, call_deopt_entry; local
350 if (table_entry->needs_frame) {
354 __ Call(&needs_frame);
360 if (needs_frame.is_linked()) {
361 __ bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 310 Label needs_frame; local
322 if (table_entry->needs_frame) {
326 __ BranchAndLink(&needs_frame, USE_DELAY_SLOT);
335 if (table_entry->needs_frame) {
339 __ BranchAndLink(&needs_frame);
345 if (needs_frame.is_linked()) {
346 __ bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 323 Label needs_frame, call_deopt_entry; local
344 if (table_entry->needs_frame) {
348 __ b(&needs_frame, SetLK);
354 if (needs_frame.is_linked()) {
355 __ bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 311 Label needs_frame, call_deopt_entry; local
332 if (table_entry->needs_frame) {
336 __ b(r14, &needs_frame);
342 if (needs_frame.is_linked()) {
343 __ bind(&needs_frame);
    [all...]

Completed in 400 milliseconds