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

Side by Side Diff: Source/wtf/CPU.h

Issue 476143002: Implement the Oilpan pushAllRegisters on MIPS64 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use the three-line copyright Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved.
3 * Copyright (C) 2007-2009 Torch Mobile, Inc. 3 * Copyright (C) 2007-2009 Torch Mobile, Inc.
4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved.
5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 #endif 173 #endif
174 174
175 #endif /* ARM */ 175 #endif /* ARM */
176 176
177 /* CPU(ARM64) - AArch64 64-bit */ 177 /* CPU(ARM64) - AArch64 64-bit */
178 #if defined(__aarch64__) 178 #if defined(__aarch64__)
179 #define WTF_CPU_ARM64 1 179 #define WTF_CPU_ARM64 1
180 #define WTF_CPU_64BIT 1 180 #define WTF_CPU_64BIT 1
181 #endif 181 #endif
182 182
183 /* CPU(MIPS64) - Mips 64-bit */
Mads Ager (chromium) 2014/08/18 06:54:16 This change looks unrelated and unused. Could you
petarj 2014/08/18 13:05:18 Done.
184 #if defined(__mips__) && defined(__LP64__)
185 #define WTF_CPU_MIPS64 1
186 #define WTF_CPU_64BIT 1
187 #endif
188
183 #endif /* WTF_CPU_h */ 189 #endif /* WTF_CPU_h */
OLDNEW
« Source/platform/heap/asm/SaveRegisters_mips64.S ('K') | « Source/platform/heap/blink_heap.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698