Mips portable floating point support

Fleshing out the portable floating point.

Change-Id: Ie7a6dcb168a4eb2a61a52e6d747da4118d54f3aa
diff --git a/src/thread.h b/src/thread.h
index 7ad433c..94659c4 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -656,6 +656,10 @@
   const void* (*pUnresolvedDirectMethodTrampolineFromCode)(Method*, Method**, Thread*,
                                                            Runtime::TrampolineType);
   void (*pUpdateDebuggerFromCode)(void*, void*, int32_t, void*);
+  bool (*pCmplFloat)(float, float);
+  bool (*pCmpgFloat)(float, float);
+  bool (*pCmplDouble)(double, double);
+  bool (*pCmpgDouble)(double, double);
 
  private:
   DISALLOW_COPY_AND_ASSIGN(Thread);