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

Side by Side Diff: test/cctest/compiler/call-tester.h

Issue 1263033004: [turbofan] Various fixes to allow unboxed doubles as arguments in registers and on the stack. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « test/cctest/compiler/c-signature.h ('k') | test/cctest/compiler/graph-builder-tester.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_CCTEST_COMPILER_CALL_TESTER_H_ 5 #ifndef V8_CCTEST_COMPILER_CALL_TESTER_H_
6 #define V8_CCTEST_COMPILER_CALL_TESTER_H_ 6 #define V8_CCTEST_COMPILER_CALL_TESTER_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/simulator.h" 10 #include "src/simulator.h"
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 } 297 }
298 template <typename F, typename P1, typename P2, typename P3, typename P4> 298 template <typename F, typename P1, typename P2, typename P3, typename P4>
299 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) { 299 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) {
300 return f(p1, p2, p3, p4); 300 return f(p1, p2, p3, p4);
301 } 301 }
302 #endif 302 #endif
303 303
304 Isolate* isolate_; 304 Isolate* isolate_;
305 }; 305 };
306 306
307 // A call helper that calls the given code object assuming C calling convention.
308 template <typename T>
309 class CodeRunner : public CallHelper<T> {
310 public:
311 CodeRunner(Isolate* isolate, Handle<Code> code, CSignature* csig)
312 : CallHelper<T>(isolate, csig), code_(code) {}
313 virtual ~CodeRunner() {}
314
315 virtual byte* Generate() { return code_->entry(); }
316
317 private:
318 Handle<Code> code_;
319 };
320
321
307 } // namespace compiler 322 } // namespace compiler
308 } // namespace internal 323 } // namespace internal
309 } // namespace v8 324 } // namespace v8
310 325
311 #endif // V8_CCTEST_COMPILER_CALL_TESTER_H_ 326 #endif // V8_CCTEST_COMPILER_CALL_TESTER_H_
OLDNEW
« no previous file with comments | « test/cctest/compiler/c-signature.h ('k') | test/cctest/compiler/graph-builder-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698