| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #include "src/x64/assembler-x64.h" | 5 #include "src/x64/assembler-x64.h" |
| 6 | 6 |
| 7 #include <cstring> | 7 #include <cstring> |
| 8 | 8 |
| 9 #if V8_TARGET_ARCH_X64 | 9 #if V8_TARGET_ARCH_X64 |
| 10 | 10 |
| (...skipping 3936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3947 // by branch instructions. | 3947 // by branch instructions. |
| 3948 return (1 << rmode_) & kApplyMask; | 3948 return (1 << rmode_) & kApplyMask; |
| 3949 } | 3949 } |
| 3950 | 3950 |
| 3951 | 3951 |
| 3952 bool RelocInfo::IsInConstantPool() { | 3952 bool RelocInfo::IsInConstantPool() { |
| 3953 return false; | 3953 return false; |
| 3954 } | 3954 } |
| 3955 | 3955 |
| 3956 | 3956 |
| 3957 } } // namespace v8::internal | 3957 } // namespace internal |
| 3958 } // namespace v8 |
| 3958 | 3959 |
| 3959 #endif // V8_TARGET_ARCH_X64 | 3960 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |