OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 2165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2176 RecordRelocInfo(RelocInfo::POSITION, current_position_); | 2176 RecordRelocInfo(RelocInfo::POSITION, current_position_); |
2177 written_position_ = current_position_; | 2177 written_position_ = current_position_; |
2178 } | 2178 } |
2179 } | 2179 } |
2180 | 2180 |
2181 | 2181 |
2182 const int RelocInfo::kApplyMask = 1 << RelocInfo::INTERNAL_REFERENCE; | 2182 const int RelocInfo::kApplyMask = 1 << RelocInfo::INTERNAL_REFERENCE; |
2183 | 2183 |
2184 | 2184 |
2185 } } // namespace v8::internal | 2185 } } // namespace v8::internal |
2186 | |
2187 | |
2188 // TODO(x64): Implement and move these to their correct cc-files: | |
2189 #include "ast.h" | |
2190 #include "bootstrapper.h" | |
2191 #include "codegen-inl.h" | |
2192 #include "cpu.h" | |
2193 #include "debug.h" | |
2194 #include "disasm.h" | |
2195 #include "disassembler.h" | |
2196 #include "frames-inl.h" | |
2197 #include "x64/macro-assembler-x64.h" | |
2198 #include "x64/regexp-macro-assembler-x64.h" | |
2199 #include "ic-inl.h" | |
2200 #include "log.h" | |
2201 #include "macro-assembler.h" | |
2202 #include "parser.h" | |
2203 #include "regexp-macro-assembler.h" | |
2204 #include "regexp-stack.h" | |
2205 #include "register-allocator-inl.h" | |
2206 #include "register-allocator.h" | |
2207 #include "runtime.h" | |
2208 #include "scopes.h" | |
2209 #include "serialize.h" | |
2210 #include "stub-cache.h" | |
2211 #include "unicode.h" | |
2212 | |
2213 namespace v8 { | |
2214 namespace internal { | |
2215 | |
2216 | |
2217 void BreakLocationIterator::ClearDebugBreakAtReturn() { | |
2218 UNIMPLEMENTED(); | |
2219 } | |
2220 | |
2221 bool BreakLocationIterator::IsDebugBreakAtReturn() { | |
2222 UNIMPLEMENTED(); | |
2223 return false; | |
2224 } | |
2225 | |
2226 void BreakLocationIterator::SetDebugBreakAtReturn() { | |
2227 UNIMPLEMENTED(); | |
2228 } | |
2229 | |
2230 } } // namespace v8::internal | |
OLD | NEW |