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

Side by Side Diff: src/untrusted/stubs/crtn_arm.S

Issue 9816003: GYP build for ARM untrusted runtime. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 9 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 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 20 matching lines...) Expand all
31 31
32 /* NOTE: for comments see: crti_arm.S */ 32 /* NOTE: for comments see: crti_arm.S */
33 33
34 #include "native_client/src/trusted/service_runtime/nacl_config.h" 34 #include "native_client/src/trusted/service_runtime/nacl_config.h"
35 35
36 36
37 /* ====================================================================== */ 37 /* ====================================================================== */
38 /* END .init section */ 38 /* END .init section */
39 /* ====================================================================== */ 39 /* ====================================================================== */
40 .section .init 40 .section .init
41 .align NACL_ARM_BUNDLE_SIZE_LOG 41 .align NACL_BLOCK_SHIFT
robertm 2012/03/23 15:03:38 dito
42 pop {r4, lr} 42 pop {r4, lr}
43 nop 43 nop
44 bic lr, lr, #NACL_CONTROL_FLOW_MASK 44 bic lr, lr, #NACL_CONTROL_FLOW_MASK
45 bx lr 45 bx lr
46 46
47 /* ====================================================================== */ 47 /* ====================================================================== */
48 /* END .fini section */ 48 /* END .fini section */
49 /* ====================================================================== */ 49 /* ====================================================================== */
50 .section .fini 50 .section .fini
51 .align NACL_ARM_BUNDLE_SIZE_LOG 51 .align NACL_BLOCK_SHIFT
52 pop {r4, lr} 52 pop {r4, lr}
53 nop 53 nop
54 bic lr, lr, #NACL_CONTROL_FLOW_MASK 54 bic lr, lr, #NACL_CONTROL_FLOW_MASK
55 bx lr 55 bx lr
OLDNEW
« src/untrusted/stubs/crti_arm.S ('K') | « src/untrusted/stubs/crti_arm.S ('k') | tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698