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

Side by Side Diff: src/ia32/assembler-ia32.h

Issue 277913002: Presubmit checks recover. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 6 years, 7 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
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/mips/assembler-mips.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 case less: 324 case less:
325 return greater; 325 return greater;
326 case greater: 326 case greater:
327 return less; 327 return less;
328 case greater_equal: 328 case greater_equal:
329 return less_equal; 329 return less_equal;
330 case less_equal: 330 case less_equal:
331 return greater_equal; 331 return greater_equal;
332 default: 332 default:
333 return cc; 333 return cc;
334 }; 334 }
335 } 335 }
336 336
337 337
338 // ----------------------------------------------------------------------------- 338 // -----------------------------------------------------------------------------
339 // Machine instruction Immediates 339 // Machine instruction Immediates
340 340
341 class Immediate BASE_EMBEDDED { 341 class Immediate BASE_EMBEDDED {
342 public: 342 public:
343 inline explicit Immediate(int x); 343 inline explicit Immediate(int x);
344 inline explicit Immediate(const ExternalReference& ext); 344 inline explicit Immediate(const ExternalReference& ext);
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 private: 1288 private:
1289 Assembler* assembler_; 1289 Assembler* assembler_;
1290 #ifdef DEBUG 1290 #ifdef DEBUG
1291 int space_before_; 1291 int space_before_;
1292 #endif 1292 #endif
1293 }; 1293 };
1294 1294
1295 } } // namespace v8::internal 1295 } } // namespace v8::internal
1296 1296
1297 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1297 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/mips/assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698