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

  /external/v8/src/compiler/
frame-elider.cc 24 if (block->needs_frame()) continue;
46 if (block->needs_frame()) {
54 if (!InstructionBlockAt(succ)->needs_frame()) {
72 if (InstructionBlockAt(succ)->needs_frame()) {
102 if (block->needs_frame()) return false;
111 if (InstructionBlockAt(pred)->needs_frame() &&
121 // For single successors, propagate the needs_frame information.
123 InstructionBlockAt(block->successors()[0])->needs_frame();
128 // independent control, only propagate needs_frame if all non-deferred
134 if (successor_block->needs_frame()) {
    [all...]
code-generator.cc 140 block->needs_frame() ? "" : " (no frame)",
160 frame_access_state()->MarkHasFrame(block->needs_frame());
175 if (FLAG_enable_embedded_constant_pool && !block->needs_frame()) {
    [all...]
instruction.cc 688 if (!block->needs_frame()) os << " (no frame)";
    [all...]
instruction.h 1400 bool needs_frame() const { return needs_frame_; } function in class:v8::internal::compiler::final
    [all...]
  /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/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/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/ia32/
lithium-codegen-ia32.cc 269 Label needs_frame;
277 if (table_entry->needs_frame) {
280 __ call(&needs_frame);
286 if (needs_frame.is_linked()) {
287 __ 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/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...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc 292 Label needs_frame;
299 if (table_entry->needs_frame) {
302 __ call(&needs_frame);
312 if (needs_frame.is_linked()) {
313 __ bind(&needs_frame);
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 271 Label needs_frame;
279 if (table_entry->needs_frame) {
282 __ call(&needs_frame);
287 if (needs_frame.is_linked()) {
288 __ bind(&needs_frame);
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_compile.c 10713 BOOL needs_frame; local
    [all...]

Completed in 540 milliseconds