Searched defs:true_label (Results 1 - 12 of 12) sorted by relevance

/external/v8/src/compiler/
H A Dcode-generator.h26 Label* true_label; member in struct:v8::internal::compiler::BranchInfo
H A Dcode-assembler.cc662 void CodeAssembler::GotoIf(Node* condition, Label* true_label) { argument
664 Branch(condition, true_label, &false_label);
669 Label true_label(this);
670 Branch(condition, &true_label, false_label);
671 Bind(&true_label);
674 void CodeAssembler::Branch(Node* condition, CodeAssembler::Label* true_label, argument
676 true_label->MergeVariables();
678 return raw_assembler_->Branch(condition, true_label->label_,
/external/v8/src/full-codegen/
H A Dfull-codegen.h889 Label* true_label,
894 true_label_(true_label),
904 Label* true_label() const { return true_label_; } function in class:v8::internal::FullCodeGenerator::TestContext
887 TestContext(FullCodeGenerator* codegen, Expression* condition, Label* true_label, Label* false_label, Label* fall_through) argument
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc5222 Condition LCodeGen::EmitTypeofIs(Label* true_label, argument
5230 __ JumpIfSmi(input, true_label);
5247 __ b(eq, true_label);
5273 __ b(eq, true_label);
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc1743 Label* true_label = instr->TrueLabel(chunk_); local
1798 value, Heap::kTrueValueRootIndex, true_label);
1813 __ JumpIfSmi(value, true_label);
1840 __ B(ge, true_label);
1850 __ B(true_label);
1857 __ B(eq, true_label);
1863 __ B(eq, true_label);
1876 __ B(true_label);
2222 Label* true_label = instr->TrueLabel(chunk_); local
2234 __ B(hs, true_label);
5500 Label* true_label = instr->TrueLabel(chunk_); local
[all...]
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc4991 Label* true_label = instr->TrueLabel(chunk_); local
5004 __ JumpIfSmi(input, true_label, true_distance);
5021 __ j(equal, true_label, true_distance);
5047 __ j(equal, true_label, true_distance);
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc5200 Condition LCodeGen::EmitTypeofIs(Label* true_label, argument
5213 __ JumpIfSmi(input, true_label);
5236 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input));
5269 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input));
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc5405 Condition LCodeGen::EmitTypeofIs(Label* true_label, argument
5418 __ JumpIfSmi(input, true_label);
5441 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input));
5474 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input));
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc5489 Condition LCodeGen::EmitTypeofIs(Label* true_label, Label* false_label, argument
5495 __ JumpIfSmi(input, true_label);
5512 __ beq(true_label);
5539 __ beq(true_label);
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc5388 Condition LCodeGen::EmitTypeofIs(Label* true_label, Label* false_label, argument
5394 __ JumpIfSmi(input, true_label);
5411 __ beq(true_label);
5438 __ beq(true_label);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc5270 Label* true_label = instr->TrueLabel(chunk_); local
5284 __ JumpIfSmi(input, true_label, true_distance);
5302 __ j(equal, true_label, true_distance);
5329 __ j(equal, true_label, true_distance);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc5474 Label* true_label = instr->TrueLabel(chunk_); local
5487 __ JumpIfSmi(input, true_label, true_distance);
5504 __ j(equal, true_label, true_distance);
5530 __ j(equal, true_label, true_distance);

Completed in 2105 milliseconds