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

Side by Side Diff: src/runtime.h

Issue 7391001: Implement sealing, freezing, and related functions for proxies. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing Mads' comments, plus bug fix. Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 F(CloneShallowLiteralBoilerplate, 1, 1) \ 277 F(CloneShallowLiteralBoilerplate, 1, 1) \
278 F(CreateObjectLiteral, 4, 1) \ 278 F(CreateObjectLiteral, 4, 1) \
279 F(CreateObjectLiteralShallow, 4, 1) \ 279 F(CreateObjectLiteralShallow, 4, 1) \
280 F(CreateArrayLiteral, 3, 1) \ 280 F(CreateArrayLiteral, 3, 1) \
281 F(CreateArrayLiteralShallow, 3, 1) \ 281 F(CreateArrayLiteralShallow, 3, 1) \
282 \ 282 \
283 /* Harmony proxies */ \ 283 /* Harmony proxies */ \
284 F(CreateJSProxy, 2, 1) \ 284 F(CreateJSProxy, 2, 1) \
285 F(IsJSProxy, 1, 1) \ 285 F(IsJSProxy, 1, 1) \
286 F(GetHandler, 1, 1) \ 286 F(GetHandler, 1, 1) \
287 F(Fix, 1, 1) \
287 \ 288 \
288 /* Statements */ \ 289 /* Statements */ \
289 F(NewClosure, 3, 1) \ 290 F(NewClosure, 3, 1) \
290 F(NewObject, 1, 1) \ 291 F(NewObject, 1, 1) \
291 F(NewObjectFromBound, 2, 1) \ 292 F(NewObjectFromBound, 2, 1) \
292 F(FinalizeInstanceSize, 1, 1) \ 293 F(FinalizeInstanceSize, 1, 1) \
293 F(Throw, 1, 1) \ 294 F(Throw, 1, 1) \
294 F(ReThrow, 1, 1) \ 295 F(ReThrow, 1, 1) \
295 F(ThrowReferenceError, 1, 1) \ 296 F(ThrowReferenceError, 1, 1) \
296 F(StackGuard, 0, 1) \ 297 F(StackGuard, 0, 1) \
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 Handle<Script> script, 650 Handle<Script> script,
650 int position); 651 int position);
651 652
652 // Helper functions used stubs. 653 // Helper functions used stubs.
653 static void PerformGC(Object* result); 654 static void PerformGC(Object* result);
654 }; 655 };
655 656
656 } } // namespace v8::internal 657 } } // namespace v8::internal
657 658
658 #endif // V8_RUNTIME_H_ 659 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698