Searched refs:loc (Results 1 - 25 of 92) sorted by relevance

1234

/art/test/1939-proxy-frames/
H A Dlocal_instance.cc41 jlong loc = -1; local
42 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetFrameLocation(thr, depth, &m, &loc))) {
59 jlong loc = -1; local
60 JvmtiErrorToException(env, jvmti_env, jvmti_env->GetFrameLocation(thr, depth, &m, &loc));
61 return loc;
/art/compiler/optimizing/
H A Dparallel_move_resolver.h82 bool IsScratchLocation(Location loc);
154 virtual void FreeScratchLocation(Location loc) = 0;
165 void AddScratchLocation(Location loc);
168 void RemoveScratchLocation(Location loc);
184 // Find a move that may be unblocked after (loc -> XXX) is performed.
185 MoveOperands* GetUnblockedPendingMove(Location loc);
188 bool IsBlockedByMoves(Location loc);
H A Dparallel_move_resolver.cc243 bool ParallelMoveResolverWithSwap::IsScratchLocation(Location loc) { argument
245 if (move->Blocks(loc)) {
251 if (move->GetDestination().Equals(loc)) {
365 for (Location loc : scratches_) {
366 if (loc.GetKind() == kind && !IsBlockedByMoves(loc)) {
367 return loc;
371 Location loc = move->GetDestination(); local
372 if (loc.GetKind() == kind && !IsBlockedByMoves(loc)) {
379 AddScratchLocation(Location loc) argument
388 RemoveScratchLocation(Location loc) argument
533 GetUnblockedPendingMove(Location loc) argument
544 IsBlockedByMoves(Location loc) argument
[all...]
/art/test/1912-get-set-local-primitive/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1913-get-set-local-objects/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1914-get-local-instance/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1915-get-set-local-current-thread/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
H A DTest1915.java73 long loc = frame.current_location;
75 if (var.start_location <= loc &&
76 var.length + var.start_location > loc &&
82 "Unable to find variable " + TARGET_VAR + " in " + frame.method + " at loc " + loc);
/art/test/1916-get-set-current-frame/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1917-get-stack-frame/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1923-frame-pop/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1924-frame-pop-toggle/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1925-self-frame-pop/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1926-missed-frame-pop/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1927-exception-event/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1928-exception-event-exception/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1929-exception-catch-exception/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
H A DTest1929.java47 Executable m, long loc, Throwable exception);
90 public void exceptionOccurred(Executable m, long loc, Throwable exception) { argument
97 public void exceptionOccurred(Executable m, long loc, Throwable exception) { argument
101 Breakpoint.locationToLine(m, loc), exception);
111 public void exceptionOccurred(Executable m, long loc, Throwable exception) { argument
114 Breakpoint.locationToLine(m, loc), exception);
119 public void exceptionOccurred(Executable m, long loc, Throwable exception) { argument
125 m + " @ line = " + Breakpoint.locationToLine(m, loc), exception);
46 exceptionOccurred( Executable m, long loc, Throwable exception) argument
/art/test/1935-get-set-current-frame-jit/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/1939-proxy-frames/src/art/
H A DStackTrace.java29 public StackFrameData(Thread thr, Executable e, long loc, int depth) { argument
32 this.current_location = loc;
38 "StackFrameData { thr: '%s', method: '%s', loc: %d, depth: %d }",
/art/test/092-locale/src/
H A DMain.java146 Locale loc;
147 loc = new Locale("en", "US");
148 System.out.println("loc: " + loc);
149 System.out.println(" iso3=" + loc.getISO3Language());
151 loc = new Locale("eng", "USA");
152 System.out.println("loc: " + loc);
154 System.out.println(" iso3=" + loc.getISO3Language());
/art/test/995-breakpoints-throw/src/art/
H A DTest995.java30 public void breakpointReached(Executable e, long loc); argument
54 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) { argument
55 System.out.println("\tBreakpoint: " + e + " @ line=" + Breakpoint.locationToLine(e, loc));
56 HANDLER.breakpointReached(e, loc);
65 public void breakpointReached(Executable e, long loc) {
66 h.breakpointReached(e, loc);
/art/tools/checker/common/
H A Dlogger.py63 loc = ""
65 loc += file + ":"
67 loc += str(line) + ":"
68 if loc:
69 loc += " "
70 Logger.log(loc, Logger.Level.Error, color=Logger.Color.Gray, newLine=False, out=sys.stderr)
/art/test/1947-breakpoint-redefine-deopt/src/
H A DMain.java58 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) { argument
60 "\tBreakpoint reached: " + e + " @ line=" + Breakpoint.locationToLine(e, loc));
/art/test/994-breakpoint-line/src/art/
H A DTest994.java38 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) { argument
40 "\tBreakpoint reached: " + e + " @ line=" + Breakpoint.locationToLine(e, loc));

Completed in 3277 milliseconds

1234