Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: runtime/vm/intermediate_language_arm64.cc

Issue 754383002: Revert "Integrate the Irregexp Regular Expression Engine." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language_arm.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_arm64.cc
diff --git a/runtime/vm/intermediate_language_arm64.cc b/runtime/vm/intermediate_language_arm64.cc
index 47f908907f79f49d612154cde2a3d6cffb0746b4..ecea14df1d3724470b62c1dfdc172a72ce851cc8 100644
--- a/runtime/vm/intermediate_language_arm64.cc
+++ b/runtime/vm/intermediate_language_arm64.cc
@@ -1135,55 +1135,6 @@ void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
}
-LocationSummary* LoadCodeUnitsInstr::MakeLocationSummary(Isolate* isolate,
- bool opt) const {
- const intptr_t kNumInputs = 2;
- const intptr_t kNumTemps = 0;
- LocationSummary* summary = new(isolate) LocationSummary(
- isolate, kNumInputs, kNumTemps, LocationSummary::kNoCall);
- summary->set_in(0, Location::RequiresRegister());
- summary->set_in(1, Location::RequiresRegister());
- summary->set_out(0, Location::RequiresRegister());
- return summary;
-}
-
-
-void LoadCodeUnitsInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- const Register array = locs()->in(0).reg();
- const Location index = locs()->in(1);
-
- Address element_address = __ ElementAddressForRegIndex(
- true, IsExternal(), class_id(), index_scale(), array, index.reg());
- // Warning: element_address may use register TMP as base.
-
- Register result = locs()->out(0).reg();
- switch (class_id()) {
- case kOneByteStringCid:
- case kExternalOneByteStringCid:
- switch (element_count()) {
- case 1: __ ldr(result, element_address, kUnsignedByte); break;
- case 2: __ ldr(result, element_address, kUnsignedHalfword); break;
- case 4: __ ldr(result, element_address, kUnsignedWord); break;
- default: UNREACHABLE();
- }
- __ SmiTag(result);
- break;
- case kTwoByteStringCid:
- case kExternalTwoByteStringCid:
- switch (element_count()) {
- case 1: __ ldr(result, element_address, kUnsignedHalfword); break;
- case 2: __ ldr(result, element_address, kUnsignedWord); break;
- default: UNREACHABLE();
- }
- __ SmiTag(result);
- break;
- default:
- UNREACHABLE();
- break;
- }
-}
-
-
Representation StoreIndexedInstr::RequiredInputRepresentation(
intptr_t idx) const {
// Array can be a Dart object or a pointer to external data.
@@ -4370,28 +4321,6 @@ void MathUnaryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
}
-LocationSummary* CaseInsensitiveCompareUC16Instr::MakeLocationSummary(
- Isolate* isolate, bool opt) const {
- const intptr_t kNumTemps = 0;
- LocationSummary* summary = new(isolate) LocationSummary(
- isolate, InputCount(), kNumTemps, LocationSummary::kCall);
- summary->set_in(0, Location::RegisterLocation(R0));
- summary->set_in(1, Location::RegisterLocation(R1));
- summary->set_in(2, Location::RegisterLocation(R2));
- summary->set_in(3, Location::RegisterLocation(R3));
- summary->set_out(0, Location::RegisterLocation(R0));
- return summary;
-}
-
-
-void CaseInsensitiveCompareUC16Instr::EmitNativeCode(
- FlowGraphCompiler* compiler) {
-
- // Call the function.
- __ CallRuntime(TargetFunction(), TargetFunction().argument_count());
-}
-
-
LocationSummary* MathMinMaxInstr::MakeLocationSummary(Isolate* isolate,
bool opt) const {
if (result_cid() == kDoubleCid) {
@@ -5424,38 +5353,6 @@ void GotoInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
}
-LocationSummary* IndirectGotoInstr::MakeLocationSummary(Isolate* isolate,
- bool opt) const {
- const intptr_t kNumInputs = 1;
- const intptr_t kNumTemps = 1;
-
- LocationSummary* summary = new(isolate) LocationSummary(
- isolate, kNumInputs, kNumTemps, LocationSummary::kNoCall);
-
- summary->set_in(0, Location::RequiresRegister());
- summary->set_temp(0, Location::RequiresRegister());
-
- return summary;
-}
-
-
-void IndirectGotoInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- Register target_address_reg = locs()->temp_slot(0)->reg();
-
- // Load from [current frame pointer] + kPcMarkerSlotFromFp.
- __ ldr(target_address_reg, Address(FP, kPcMarkerSlotFromFp * kWordSize));
-
- // Add the offset.
- Register offset_reg = locs()->in(0).reg();
- __ add(target_address_reg,
- target_address_reg,
- Operand(offset_reg, ASR, kSmiTagSize));
-
- // Jump to the absolute address.
- __ br(target_address_reg);
-}
-
-
LocationSummary* StrictCompareInstr::MakeLocationSummary(Isolate* isolate,
bool opt) const {
const intptr_t kNumInputs = 2;
« no previous file with comments | « runtime/vm/intermediate_language_arm.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698