Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/arm/
Dlithium-arm.h1261 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1263 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-arm.cc1867 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-arm.cc4242 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/mips64/
Dlithium-mips64.h1241 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1243 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-mips64.cc1817 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-mips64.cc4220 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/x64/
Dlithium-x64.h1242 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1244 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-x64.cc1824 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-x64.cc4221 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/ia32/
Dlithium-ia32.h1257 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1259 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-ia32.cc1861 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-ia32.cc4100 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/x87/
Dlithium-x87.h1271 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1273 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-x87.cc1867 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-x87.cc4517 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/mips/
Dlithium-mips.h1242 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
1244 LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-mips.cc1816 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-mips.cc4189 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { in DoBoundsCheck()
/external/chromium_org/v8/src/arm64/
Dlithium-arm64.h763 class LBoundsCheck FINAL : public LTemplateInstruction<0, 2, 0> {
765 explicit LBoundsCheck(LOperand* index, LOperand* length) { in LBoundsCheck() function
Dlithium-arm64.cc974 LInstruction* result = new(zone()) LBoundsCheck(index, length); in DoBoundsCheck()
Dlithium-codegen-arm64.cc1824 void LCodeGen::DoBoundsCheck(LBoundsCheck *instr) { in DoBoundsCheck()
/external/chromium_org/v8/
DChangeLog3700 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.