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

Unified Diff: src/IceTargetLoweringARM32.cpp

Issue 1257283004: Iasm and obj lowering for advanced switch lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 5 years, 5 months 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 | « src/IceTargetLoweringARM32.h ('k') | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringARM32.cpp
diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
index 09254670705cd7054d21ad757607423a6eac92ec..5a87a0bb1d73c85af54852a8e8420a5a0a2c836e 100644
--- a/src/IceTargetLoweringARM32.cpp
+++ b/src/IceTargetLoweringARM32.cpp
@@ -383,6 +383,12 @@ Variable *TargetARM32::getPhysicalRegister(SizeT RegNum, Type Ty) {
return Reg;
}
+void TargetARM32::emitJumpTable(const Cfg *Func,
+ const InstJumpTable *JumpTable) const {
+ (void)JumpTable;
+ UnimplementedError(Func->getContext()->getFlags());
+}
+
void TargetARM32::emitVariable(const Variable *Var) const {
Ostream &Str = Ctx->getStrEmit();
if (Var->hasReg()) {
@@ -2709,6 +2715,12 @@ void TargetDataARM32::lowerConstants() {
UnimplementedError(Ctx->getFlags());
}
+void TargetDataARM32::lowerJumpTables() {
+ if (Ctx->getFlags().getDisableTranslation())
+ return;
+ UnimplementedError(Ctx->getFlags());
+}
+
TargetHeaderARM32::TargetHeaderARM32(GlobalContext *Ctx)
: TargetHeaderLowering(Ctx), CPUFeatures(Ctx->getFlags()) {}
« no previous file with comments | « src/IceTargetLoweringARM32.h ('k') | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698