Home | History | Annotate | Download | only in arm

Lines Matching refs:isolate

27 #define CALL_GENERATED_CODE(isolate, entry, p0, p1, p2, p3, p4) \
31 void*, int*, int, Address, int, Isolate*);
38 #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
48 static inline uintptr_t JsLimitFromCLimit(v8::internal::Isolate* isolate,
50 USE(isolate);
54 static inline uintptr_t RegisterCTryCatch(v8::internal::Isolate* isolate,
56 USE(isolate);
60 static inline void UnregisterCTryCatch(v8::internal::Isolate* isolate) {
61 USE(isolate);
135 explicit Simulator(Isolate* isolate);
140 static Simulator* current(v8::internal::Isolate* isolate);
204 static void Initialize(Isolate* isolate);
370 Isolate* isolate, void* external_function,
432 v8::internal::Isolate* isolate_;
543 #define CALL_GENERATED_CODE(isolate, entry, p0, p1, p2, p3, p4) \
544 reinterpret_cast<Object*>(Simulator::current(isolate)->Call( \
547 #define CALL_GENERATED_FP_INT(isolate, entry, p0, p1) \
548 Simulator::current(isolate)->CallFPReturnsInt(FUNCTION_ADDR(entry), p0, p1)
550 #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
552 Simulator::current(isolate) \
562 static inline uintptr_t JsLimitFromCLimit(v8::internal::Isolate* isolate,
564 return Simulator::current(isolate)->StackLimit(c_limit);
567 static inline uintptr_t RegisterCTryCatch(v8::internal::Isolate* isolate,
569 Simulator* sim = Simulator::current(isolate);
573 static inline void UnregisterCTryCatch(v8::internal::Isolate* isolate) {
574 Simulator::current(isolate)->PopAddress();