Home
last modified time | relevance | path

Searched refs:LBoundsCheck (Results 1 – 25 of 25) sorted by relevance

/external/v8/src/crankshaft/ia32/
Dlithium-ia32.h1185 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1187 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-ia32.cc1835 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-ia32.cc3878 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/x87/
Dlithium-x87.h1197 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1199 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-x87.cc1840 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-x87.cc4228 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/mips/
Dlithium-mips.h1177 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1179 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-mips.cc1799 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-mips.cc3894 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/x64/
Dlithium-x64.h1177 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1179 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-x64.cc1813 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-x64.cc3994 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/arm/
Dlithium-arm.h1199 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1201 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-arm.cc1852 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-arm.cc3929 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.h1195 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1197 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-mips64.cc1805 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-mips64.cc4108 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.h1154 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
1156 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-ppc.cc1815 LInstruction* result = new (zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-ppc.cc4158 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoShiftI()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.h728 class LBoundsCheck final : public LTemplateInstruction<0, 2, 0> {
730 explicit LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-arm64.cc971 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-arm64.cc1714 void LCodeGen::DoBoundsCheck(LBoundsCheck *instr) { in DoBoundsCheck()
/external/v8/
DChangeLog9784 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.