Searched refs:needs_frame (Results 1 - 15 of 15) sorted by relevance

/external/v8/src/compiler/
H A Dframe-elider.cc24 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...]
H A Dcode-generator.cc140 block->needs_frame() ? "" : " (no frame)",
160 frame_access_state()->MarkHasFrame(block->needs_frame());
175 if (FLAG_enable_embedded_constant_pool && !block->needs_frame()) {
H A Dinstruction.cc688 if (!block->needs_frame()) os << " (no frame)";
H A Dinstruction.h1400 bool needs_frame() const { return needs_frame_; } function in class:v8::internal::compiler::final
/external/v8/src/
H A Ddeoptimizer.h410 needs_frame(frame) {}
414 needs_frame == other.needs_frame;
421 bool needs_frame; member in struct:v8::internal::Deoptimizer::JumpTableEntry
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc310 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);
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc310 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);
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc758 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);
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc269 Label needs_frame;
277 if (table_entry->needs_frame) {
280 __ call(&needs_frame);
286 if (needs_frame.is_linked()) {
287 __ bind(&needs_frame);
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc329 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);
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc323 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);
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc311 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);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc292 Label needs_frame;
299 if (table_entry->needs_frame) {
302 __ call(&needs_frame);
312 if (needs_frame.is_linked()) {
313 __ bind(&needs_frame);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc271 Label needs_frame;
279 if (table_entry->needs_frame) {
282 __ call(&needs_frame);
287 if (needs_frame.is_linked()) {
288 __ bind(&needs_frame);
/external/pcre/dist2/src/
H A Dpcre2_jit_compile.c10713 BOOL needs_frame; local
10721 needs_frame = framesize >= 0;
10722 if (!needs_frame)
10738 if (needs_frame)
10785 if (needs_frame)
10798 if (needs_frame)

Completed in 405 milliseconds