Home
last modified time | relevance | path

Searched refs:next_test (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/x87/
Dfull-codegen-x87.cc943 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
956 __ bind(&next_test); in VisitSwitchStatement()
957 next_test.Unuse(); in VisitSwitchStatement()
973 __ j(not_equal, &next_test); in VisitSwitchStatement()
990 __ j(not_equal, &next_test); in VisitSwitchStatement()
996 __ j(not_equal, &next_test); in VisitSwitchStatement()
1003 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/src/x64/
Dfull-codegen-x64.cc977 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
990 __ bind(&next_test); in VisitSwitchStatement()
991 next_test.Unuse(); in VisitSwitchStatement()
1007 __ j(not_equal, &next_test); in VisitSwitchStatement()
1024 __ j(not_equal, &next_test); in VisitSwitchStatement()
1030 __ j(not_equal, &next_test); in VisitSwitchStatement()
1037 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/src/ia32/
Dfull-codegen-ia32.cc954 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
967 __ bind(&next_test); in VisitSwitchStatement()
968 next_test.Unuse(); in VisitSwitchStatement()
984 __ j(not_equal, &next_test); in VisitSwitchStatement()
1001 __ j(not_equal, &next_test); in VisitSwitchStatement()
1007 __ j(not_equal, &next_test); in VisitSwitchStatement()
1014 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/src/arm64/
Dfull-codegen-arm64.cc1020 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
1033 __ Bind(&next_test); in VisitSwitchStatement()
1034 next_test.Unuse(); in VisitSwitchStatement()
1047 __ B(ne, &next_test); in VisitSwitchStatement()
1063 __ JumpIfNotRoot(x0, Heap::kTrueValueRootIndex, &next_test); in VisitSwitchStatement()
1068 __ Cbnz(x0, &next_test); in VisitSwitchStatement()
1075 __ Bind(&next_test); in VisitSwitchStatement()
/external/v8/src/mips/
Dfull-codegen-mips.cc1013 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
1026 __ bind(&next_test); in VisitSwitchStatement()
1027 next_test.Unuse(); in VisitSwitchStatement()
1042 __ Branch(&next_test, ne, a1, Operand(a0)); in VisitSwitchStatement()
1060 __ Branch(&next_test, ne, v0, Operand(at)); in VisitSwitchStatement()
1065 __ Branch(&next_test, ne, v0, Operand(zero_reg)); in VisitSwitchStatement()
1072 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/src/mips64/
Dfull-codegen-mips64.cc1008 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
1021 __ bind(&next_test); in VisitSwitchStatement()
1022 next_test.Unuse(); in VisitSwitchStatement()
1037 __ Branch(&next_test, ne, a1, Operand(a0)); in VisitSwitchStatement()
1055 __ Branch(&next_test, ne, v0, Operand(at)); in VisitSwitchStatement()
1060 __ Branch(&next_test, ne, v0, Operand(zero_reg)); in VisitSwitchStatement()
1067 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/src/arm/
Dfull-codegen-arm.cc1021 Label next_test; // Recycled for each test. in VisitSwitchStatement() local
1034 __ bind(&next_test); in VisitSwitchStatement()
1035 next_test.Unuse(); in VisitSwitchStatement()
1050 __ b(ne, &next_test); in VisitSwitchStatement()
1068 __ b(ne, &next_test); in VisitSwitchStatement()
1074 __ b(ne, &next_test); in VisitSwitchStatement()
1081 __ bind(&next_test); in VisitSwitchStatement()
/external/v8/test/cctest/
Dtest-api.cc13453 int next_test; in GetNextTestNumber() local
13455 next_test = (linear_congruential_generator >> 16) % tests_being_run_; in GetNextTestNumber()
13458 } while (!RegisterThreadedTest::nth(next_test)->fuzzer_->active_); in GetNextTestNumber()
13459 return next_test; in GetNextTestNumber()